diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2016-09-03 00:24:41 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-03 13:14:31 +0200 |
commit | ec100a5ad9287e67b98346103ccf6a614e13ed13 (patch) | |
tree | e631c2c784977755f3cb4a3b19b3701786e06d21 /community/psad/psad.initd | |
parent | 2379c836b3ad5a41cb86841a6e19c776cf0e5f9c (diff) | |
download | aports-ec100a5ad9287e67b98346103ccf6a614e13ed13.tar.bz2 aports-ec100a5ad9287e67b98346103ccf6a614e13ed13.tar.xz |
community/psad: fix initd
Diffstat (limited to 'community/psad/psad.initd')
-rw-r--r-- | community/psad/psad.initd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/community/psad/psad.initd b/community/psad/psad.initd index 4a78c701c6..f598ae05ed 100644 --- a/community/psad/psad.initd +++ b/community/psad/psad.initd @@ -1,7 +1,7 @@ #!/sbin/openrc-run # This file is part of PSAD (Port Scan Attack Detector) -# Adapted for Alpine Linux by IT Offshore <developer@it-offshore.co.uk> +# Adapted for Alpine Linux by Stuart Cardall <developer@it-offshore.co.uk> command="/usr/sbin/psad" pidfile="/var/run/psad/psad.pid" @@ -27,9 +27,9 @@ start_pre() { } start() { - ebegin "Starting PSAD (Port Scan Attack Detector)" - start-stop-daemon --start $command --pidfile $pidfile - eend $? + ebegin "Starting PSAD (Port Scan Attack Detector)" + start-stop-daemon --start $command --pidfile $pidfile + eend $? } stop() { |