Subversion Repositories ALCASAR

Rev

Rev 1476 | Rev 1596 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
807 franck 1
#!/bin/sh
825 franck 2
# $Id: alcasar-daemon.sh 1574 2015-03-01 23:17:07Z richard $
807 franck 3
 
824 franck 4
# alcasar-daemon.sh
1474 richard 5
# by Franck BOUIJOUX & Rexy
807 franck 6
# This script is distributed under the Gnu General Public License (GPL)
7
# Watchdog of Services
8
# See /etc/cron.d/alcasar-daemon-watchdog for config the time
9
 
824 franck 10
conf_file="/usr/local/etc/alcasar.conf"
11
SSH=`grep SSH= $conf_file|cut -d"=" -f2`				# sshd active (on/off)
12
SSH=${SSH:=off}
1474 richard 13
SERVICES="mysqld httpd ntpd iptables dnsmasq dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole radiusd nfsen dansguardian freshclam ulogd-ssh ulogd-traceability ulogd-ext-access chilli fail2ban sshd"
807 franck 14
 
824 franck 15
function ServiceTest () {
1574 richard 16
	 CMD=`/usr/bin/systemctl is-active $s`
1476 richard 17
	 if [ $CMD != "active" ]
824 franck 18
	 then
1476 richard 19
		logger -i "!! $s is inactive. Activation attempt"
1574 richard 20
		/usr/bin/systemctl start $s.service
824 franck 21
	 fi
22
}
807 franck 23
 
824 franck 24
 
1474 richard 25
for s in $SERVICES
807 franck 26
do
824 franck 27
	if [ $s != "sshd" ] 
807 franck 28
	then
1018 franck 29
	    ServiceTest
824 franck 30
	else
31
	{
32
	    if [ $SSH == "ON" ] | [ $SSH == "on" ] | [ $SSH == "On" ]
33
	    then
1018 franck 34
		  ServiceTest
824 franck 35
	    fi
36
	}
807 franck 37
	fi
38
done