diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/msec/msec | 2 | ||||
-rwxr-xr-x | src/msec/msecperms | 2 | ||||
-rwxr-xr-x | src/msec/plugins/msec.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/msec/msec b/src/msec/msec index 83f22e4..a9a2367 100755 --- a/src/msec/msec +++ b/src/msec/msec @@ -8,7 +8,7 @@ if [ "`whoami`" != "root" ]; then exit 1 fi -LCK=/var/run/msec.pid +LCK=/run/msec.pid function cleanup() { rm -f $LCK diff --git a/src/msec/msecperms b/src/msec/msecperms index ab80b74..2b27163 100755 --- a/src/msec/msecperms +++ b/src/msec/msecperms @@ -8,7 +8,7 @@ if [ "`whoami`" != "root" ]; then exit 1 fi -LCK=/var/run/msec.pid +LCK=/run/msec.pid function cleanup() { rm -f $LCK diff --git a/src/msec/plugins/msec.py b/src/msec/plugins/msec.py index 5b18f62..b7d862f 100755 --- a/src/msec/plugins/msec.py +++ b/src/msec/plugins/msec.py @@ -34,7 +34,7 @@ CRONALLOW = '/etc/cron.allow' FSTAB = '/etc/fstab' GDM = '/etc/pam.d/gdm' GDMCONF = '/etc/X11/gdm/custom.conf' -GDM230 = '/var/run/gdm' +GDM230 = '/run/gdm' HALT = '/usr/bin/halt' HOSTCONF = '/etc/host.conf' HOSTSDENY = '/etc/hosts.deny' |