summaryrefslogtreecommitdiffstats
path: root/shorewall-model.lua
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2008-04-17 08:57:08 +0000
committerMika Havela <mika.havela@gmail.com>2008-04-17 08:57:08 +0000
commit0decbc0ab98c1b580d775f86c5985f882c94ee17 (patch)
tree2b883abef7ed14b95372871c0000861e02e3adee /shorewall-model.lua
parente6a3d004067522289bf52d96b0a398cf539e7b80 (diff)
downloadacf-shorewall-0decbc0ab98c1b580d775f86c5985f882c94ee17.tar.bz2
acf-shorewall-0decbc0ab98c1b580d775f86c5985f882c94ee17.tar.xz
Fetching path to logfile by reading the configfile instead of hardcode /var/log/messages
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@1027 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'shorewall-model.lua')
-rw-r--r--shorewall-model.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/shorewall-model.lua b/shorewall-model.lua
index 4acb9da..9a660a6 100644
--- a/shorewall-model.lua
+++ b/shorewall-model.lua
@@ -307,7 +307,8 @@ end
function getlogfile ()
local logfile = {}
- local cmdaction = "grep Shorewall /var/log/messages"
+ local logfilepath = getopts.getoptsfromfile(configfile,"LOGFILE")
+ local cmdaction = "grep Shorewall " .. logfilepath.LOGFILE
local f, error = io.popen(cmdaction ,r)
local checkresult = f:read("*a")
f:close()