From 8e14e610cb2cc21eb05808074036a7bf8edaa3c1 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Fri, 30 Oct 2015 15:14:11 +0000 Subject: Modify logfile to get logging info from the config and use common view --- ipsectools-model.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'ipsectools-model.lua') diff --git a/ipsectools-model.lua b/ipsectools-model.lua index 5af6556..e3e7c99 100644 --- a/ipsectools-model.lua +++ b/ipsectools-model.lua @@ -8,6 +8,7 @@ format = require("acf.format") validator = require("acf.validator") -- Set variables +local confdfile = "/etc/conf.d/racoon" local configfile = "/etc/racoon/racoon.conf" local configfile2 = "/etc/ipsec.conf" local processname = "racoon" @@ -271,4 +272,25 @@ mymodule.view_cert = function(self, viewcert) return viewcert end +function mymodule.get_logfile(self, clientdata) + -- Can override syslog with logfile specified in command-line options "-l logfile" + -- Otherwise, uses syslog with facility LOG_DAEMON + local retval = cfe({ type="group", value={}, label="Log File Configuration" }) + retval.value.facility = cfe({value="daemon", label="Syslog Facility"}) + retval.value.grep = cfe({ value="racoon", label="Grep" }) + local opts = format.parse_ini_file(fs.read_file(confdfile), "", "RACOON_OPTS") + if opts then + -- remove quotes + local opts2 = string.match(opts, "\"(.*)\"") + local opts = " "..(opts2 or "") + local logfile = string.match(opts, "%s%-l%s+(%S+)") + if logfile then + retval.value.filename = cfe({value=logfile, label="File name"}) + retval.value.facility = nil + retval.value.grep = nil + end + end + return retval +end + return mymodule -- cgit v1.2.3