aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-security/samhain/files/samhain-standalone.init
blob: ac28efdf13b5c3b8d52226e8e75aaa688c757cfb (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/bin/sh
# chkconfig: 2345 99 10
# description: File Integrity Checking Daemon
#
# processname: samhain
# config  : /etc/samhainrc
# logfile : /var/log/samhain_log
# database: /var/lib/samhain/samhain_file
#

NAME=samhain
DAEMON=/usr/sbin/samhain
RETVAL=0
VERBOSE=yes
PIDFILE=/var/run/samhain.pid

. /etc/default/samhain-standalone

if [ "x$SAMHAIN_STANDALONE_START" != "xyes" ]; then
	echo "${0}: samhain disabled in /etc/default/samhain-standalone"
	exit 0
fi

if [ -x $DAEMON ]; then
	:
else
	echo "${0}: executable ${DAEMON} not found"
	exit 1
fi

if [ ! -e /var/lib/samhain/samhain_file ]; then
	echo "${0}: /var/lib/samhain/samhain_file does not exist.  You must"
	echo "  run 'samhain -t init' before samhian can start."
	exit 1
fi

samhain_done()
{
	if [ $RETVAL -eq 0 ]; then
		echo "."
	else
		echo " failed."
	fi
}

log_stat_msg () {
case "$1" in
	0)
	echo "Service $NAME: Running";
	;;
	1)
	echo "Service $NAME: Stopped and /var/run pid file exists";
	;;
	3)
	echo "Service $NAME: Stopped";
	;;
	*)
	echo "Service $NAME: Status unknown";
	;;
esac
}

case "$1" in
  start)
	#
	# Remove a stale PID file, if found
	#
	if test -f ${PIDFILE}; then
	    /bin/rm -f ${PIDFILE}
	fi

	echo -n "Starting ${NAME}"
	( /sbin/start-stop-daemon --start --quiet --exec $DAEMON )
	RETVAL=$?
	samhain_done
	exit $RETVAL
	;;
  stop)
    echo -n "Stopping $NAME"
    ( /sbin/start-stop-daemon --stop --quiet --exec $DAEMON )
	RETVAL=$?
	samhain_done
	#
	# Remove a stale PID file, if found
	#
	if test -f ${PIDFILE}; then
	    /bin/rm -f ${PIDFILE}
	fi
        if test -S /var/run/${NAME}.sock; then
            /bin/rm -f /var/run/${NAME}.sock
        fi
	;;

  restart)
	$0 stop
	sleep 3
	$0 start
	RETVAL=$?
	;;

  reload|force-reload)
    echo -n "Reloading $NAME configuration files"
    ( /sbin/start-stop-daemon --stop --signal 1 --quiet --exec $DAEMON )
    RETVAL=$?
	samhain_done
    ;;

  status)
	if pidof -o %PPID $DAEMON > /dev/null; then
	    echo "Samhain running"
	    RETVAL=0
	else
	    echo "Samhain not running"
	    RETVAL=1
	fi
	;;
  *)
	echo "$0 usage: {start|stop|status|restart|reload}"
	exit 1
	;;
esac

exit $RETVAL