diff options
author | aurelien <aurelien@cwb.io> | 2012-11-22 10:59:05 +0100 |
---|---|---|
committer | aurelien <aurelien@cwb.io> | 2012-11-22 10:59:05 +0100 |
commit | f97ff910471fb3ae2c8ea69befecaae8cbf6dbea (patch) | |
tree | 297ea34dee3ae68d71ca4a5175d1d478ce69be76 /pcr/psad/psad-sysvinit.archlinux | |
parent | 9cce2f098d5d77a2748952e1221127b9f0614566 (diff) | |
download | abslibre-f97ff910471fb3ae2c8ea69befecaae8cbf6dbea.tar.gz abslibre-f97ff910471fb3ae2c8ea69befecaae8cbf6dbea.tar.bz2 abslibre-f97ff910471fb3ae2c8ea69befecaae8cbf6dbea.zip |
+ barnyard2 perl-iptables-parse perl-unix-syslog psad pulledpork snort vuurmuur xtables-addons
Diffstat (limited to 'pcr/psad/psad-sysvinit.archlinux')
-rw-r--r-- | pcr/psad/psad-sysvinit.archlinux | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/pcr/psad/psad-sysvinit.archlinux b/pcr/psad/psad-sysvinit.archlinux new file mode 100644 index 000000000..6b4e76042 --- /dev/null +++ b/pcr/psad/psad-sysvinit.archlinux @@ -0,0 +1,52 @@ +#!/bin/bash +# +# Startup script for psad +# +# chkconfig: 345 99 05 +# description: The Port Scan Attack Detector (psad) +# processname: psad +# pidfile: /var/run/psad.pid +# config: /etc/psad/psad.conf +# +# $Id: psad-init.archlinux + +. /etc/rc.conf +. /etc/rc.d/functions +. /etc/conf.d/sshd + +PID=`cat /var/run/psad.pid` +# See how we were called. +case "$1" in +start) + stat_busy "Starting psad" + [ -z "$PID" ] && /usr/sbin/psad + if [ $? -gt 0 ]; then + stat_fail + else + #let psad take care of the pid; we don't need to + add_daemon psad + stat_done + fi + ;; +stop) + stat_busy "Stopping psad" + /usr/sbin/psad --Kill + if [ $? -gt 0 ]; then + stat_fail + else + #let psad take care of the pid; we don't need to + rm_daemon psad + stat_done + fi + ;; +status) + /usr/sbin/psad --Status + ;; +restart) + $0 stop + $0 start + ;; +*) + echo "Usage: psad {start|stop|status|restart}" + exit 1 +esac |