diff options
Diffstat (limited to 'community/psad/psad.initd')
-rw-r--r-- | community/psad/psad.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/psad/psad.initd b/community/psad/psad.initd index f598ae05ed..d58b15daf7 100644 --- a/community/psad/psad.initd +++ b/community/psad/psad.initd @@ -4,7 +4,7 @@ # Adapted for Alpine Linux by Stuart Cardall <developer@it-offshore.co.uk> command="/usr/sbin/psad" -pidfile="/var/run/psad/psad.pid" +pidfile="/run/psad/psad.pid" config_file="/etc/psad/psad.conf" depend() { @@ -22,7 +22,7 @@ check_config() { start_pre() { check_config || return 1 - # make sure dir for pidfile exists. /var/run is tmpfs... + # make sure dir for pidfile exists. /run is tmpfs... checkpath --directory ${pidfile%/*} } |