blob: d58b15daf74bd36bed5cec8107ee14006e717e3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/sbin/openrc-run
# This file is part of PSAD (Port Scan Attack Detector)
# Adapted for Alpine Linux by Stuart Cardall <developer@it-offshore.co.uk>
command="/usr/sbin/psad"
pidfile="/run/psad/psad.pid"
config_file="/etc/psad/psad.conf"
depend() {
need net
need logger
after iptables
}
# allow override config_file location from conf.d
: ${config_file:="/etc/psad/psad.conf"}
check_config() {
[ -f "$config_file" ] || error "$config_file is missing"
}
start_pre() {
check_config || return 1
# make sure dir for pidfile exists. /run is tmpfs...
checkpath --directory ${pidfile%/*}
}
start() {
ebegin "Starting PSAD (Port Scan Attack Detector)"
start-stop-daemon --start $command --pidfile $pidfile
eend $?
}
stop() {
local piddir=${pidfile%/*}
ebegin "Stopping psadwatchd"
start-stop-daemon --stop --quiet --pidfile $piddir/psadwatchd.pid
eend $? "Failed to stop psadwatchd"
if [ -f $piddir/kmsgsd.pid ] ; then
ebegin "Stopping kmsgsd"
start-stop-daemon --stop --quiet --pidfile $piddir/kmsgsd.pid
eend $? "Failed to stop kmsgsd"
fi
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --quiet --pidfile $piddir/psad.pid
eend $? "Failed to stop ${SVCNAME}"
}
|