From e382f078ffeb1b2c8288b4395732157edadc94e2 Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Mon, 3 Jun 2019 02:44:04 +0700 Subject: network/DenyHosts: Add missing rc.denyhosts. Signed-off-by: Willy Sudiarto Raharjo --- network/DenyHosts/rc.denyhosts | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 network/DenyHosts/rc.denyhosts (limited to 'network') diff --git a/network/DenyHosts/rc.denyhosts b/network/DenyHosts/rc.denyhosts new file mode 100644 index 0000000000..c892626aaa --- /dev/null +++ b/network/DenyHosts/rc.denyhosts @@ -0,0 +1,47 @@ +#!/bin/sh +# Start/stop/restart Deny Hosts + +# Start Deny Hosts: +CMDLINE=/usr/sbin/daemon-control +dnh_start() { +echo Starting Deny Hosts daemon: $CMDLINE +$CMDLINE start +echo +} + +# Stop Deny Hosts: +dnh_stop() { +echo Stopping Deny Hosts daemon: $CMDLINE +$CMDLINE stop +echo +} + +# Restart Deny Hosts: +dnh_restart() { +dnh_stop +sleep 1 +dnh_start +} + +# Check if Deny Hosts is running +dnh_status() { +$CMDLINE status +echo +} + +case $1 in +'start') +dnh_start +;; +'stop') +dnh_stop +;; +'restart') +dnh_restart +;; +'status') +dnh_status +;; +'*') +echo usage $0 start|stop|restart|status +esac -- cgit v1.2.3