mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
97d65ecc90
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
45 lines
1 KiB
Bash
45 lines
1 KiB
Bash
#!/bin/sh
|
|
|
|
################################################################################
|
|
sshguard_start() {
|
|
################################################################################
|
|
if [ -n "$(pidof sshguard)" ]; then
|
|
echo "sshguard seems to be already running."
|
|
return
|
|
fi
|
|
|
|
/usr/sbin/sshguard -l /var/log/messages 1>/dev/null &
|
|
}
|
|
|
|
################################################################################
|
|
sshguard_stop() {
|
|
################################################################################
|
|
if [ -z "$(pidof sshguard)" ]; then
|
|
echo "sshguard does not seem to be running."
|
|
return
|
|
fi
|
|
|
|
kill $(pidof sshguard)
|
|
}
|
|
|
|
################################################################################
|
|
sshguard_restart() {
|
|
################################################################################
|
|
sshguard_stop
|
|
sleep 1
|
|
sshguard_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
sshguard_start
|
|
;;
|
|
'stop')
|
|
sshguard_stop
|
|
;;
|
|
'restart')
|
|
sshguard_restart
|
|
;;
|
|
*)
|
|
echo "usage: $0 start|stop|restart"
|
|
esac
|