summaryrefslogtreecommitdiffstats
path: root/init/samhain.startLinux.in
blob: 55ceaaf88a08bff5584b1e240dd253c3532aa09d (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/bin/bash

# chkconfig: 2345 99 10
# description: File Integrity Checking Daemon
#
# processname: @install_name@
# config  : @myconffile@
# logfile : @mylogfile@
# database: @mydatafile@
#

### BEGIN INIT INFO
# Provides: @install_name@
# Required-Start: $syslog $network $remote_fs
# Required-Stop: $syslog $network $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Keep an eye on stuff
# Description: Keep an eye on stuff
### END INIT INFO

# For Debian
#
FLAGS="defaults 99 10"

NAME=@install_name@
DAEMON=@sbindir@/@install_name@
RETVAL=0
VERBOSE=yes
PIDFILE=@mylockfile@

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

# Sort out sourcing in the distribution specific library functions
# and the command to run them.
if [ -f /etc/redhat-release ]; then
    if [ -f /etc/init.d/functions ]; then
	. /etc/init.d/functions
	DISTRO=redhat
    elif [ -f /etc/rc.d/init.d/functions ]; then
	. /etc/rc.d/init.d/functions
	DISTRO=redhat
    else
	DISTRO=generic
    fi
elif [ -f /etc/mandrake-release ]; then
	. /etc/init.d/functions
	DISTRO=redhat
elif [ -f /etc/yellowdog-release ]; then
	. /etc/init.d/functions
	DISTRO=redhat
elif [ -f /etc/SuSE-release ]; then
	. /etc/rc.config
	. /etc/rc.status
	# Determine the base and follow a runlevel link name.
	base=${0##*/}
	link=${base#*[SK][0-9][0-9]}
	# Force execution if not called by a runlevel directory.
	test $link = $base && START_@INSTALL_NAME@=yes
	# Check whether START_@INSTALL_NAME@ is in /etc/rc.config
	# If yes, abort unless its value is 'yes'
	if test "x${START_@INSTALL_NAME@}" != "x"; then
	    test "${START_@INSTALL_NAME@}" = yes || exit 0
	fi
	return=$rc_done
	DISTRO=suse
elif [ -f /etc/debian_version ]; then
	# . /etc/default/rcS
	set -e
	DISTRO=debian
elif [ -f /etc/slackware-version ]; then
	# . /etc/rc.d/rc.sysvinit
	DISTRO=generic
else
	DISTRO=generic
fi

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

# Generic function "a la Red Hat"
MOVE_TO_COL="echo -en \\033[60G"
SETCOLOR_SUCCESS="echo -en \\033[1;32m"
SETCOLOR_FAILURE="echo -en \\033[1;31m"
SETCOLOR_NORMAL="echo -en \\033[0;39m"

echo_success() {
	$MOVE_TO_COL
	echo -n "[  "
	$SETCOLOR_SUCCESS
	echo -n "OK"
	$SETCOLOR_NORMAL
	echo -n "  ]"
	echo -ne "\r"
	echo ""
}

echo_failure() {
	$MOVE_TO_COL
	echo -n "["
	$SETCOLOR_FAILURE
	echo -n "FAILED"
	$SETCOLOR_NORMAL
	echo -n "]"
	echo -ne "\r"
	echo ""
}


# echo OK in green if is success, FAILED in red is failed
generic_end()
{
	if [ $RETVAL -eq 0 ];
	then
		echo_success
	else
		echo_failure
	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
	#
	case "$DISTRO" in
	debian)
		echo -n "Starting ${NAME}"
		( /sbin/start-stop-daemon --start --oknodo --quiet --exec $DAEMON )
		RETVAL=$?
		debian_end
		;;
	redhat)
		if [ -f /etc/sysconfig/${NAME} ]; then
                       . /etc/sysconfig/${NAME}
                fi
		echo -n $"Starting ${NAME}: "
                if [ -n "$OPTIONS" ]; then
                        daemon $DAEMON $OPTIONS
                else
                        daemon $DAEMON
                fi
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/${NAME}
		echo
		;;
	suse)
		echo -n "Starting service ${NAME}"
		/sbin/startproc $DAEMON
		RETVAL=$? 
		if [ $RETVAL -eq 0 ]; then
			return=$rc_done
		else
			return=$rc_failed
		fi
		echo -e "$return"
		;;
	*)
		echo -n "Starting ${NAME} ... "
		$DAEMON start
		RETVAL=$?
		generic_end
		;;
	esac
	exit $RETVAL
	;;

  stop)
	case "$DISTRO" in
	debian)
		echo -n "Stopping $NAME"
        	( /sbin/start-stop-daemon --stop --oknodo --quiet --exec $DAEMON )
		RETVAL=$? 
		debian_end
		;;
	redhat)
        	echo -n $"Stopping ${NAME}: "
        	killproc ${NAME}
		RETVAL=$? 
		rm -f /var/lock/subsys/${NAME}
        	echo
		;;
	suse)
		echo -n "Shutting down service ${NAME}"
		/sbin/killproc -TERM $DAEMON
		RETVAL=$? 
		if [ $RETVAL -eq 0 ]; then
			return=$rc_done
		else
			return=$rc_failed
		fi
		echo -e "$return"
		;;
	*)
	        if test x"$VERBOSE" != xno; then
		    echo -n "Stopping ${NAME} ... "
		fi
		$DAEMON stop
		RETVAL=$?
		generic_end
		;;
	esac
	#
	# Remove a stale PID file, if found
	#
	if test -f ${PIDFILE}; then
	    /bin/rm -f ${PIDFILE}
	fi
        if test -S @mylockdir@/${NAME}.sock; then
            /bin/rm -f @mylockdir@/${NAME}.sock
        fi
	;;

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

  reload|force-reload)
	case "$DISTRO" in
	debian)
        	echo -n "Reloading $NAME configuration files"
        	( /sbin/start-stop-daemon --stop --signal 1 --quiet --exec $DAEMON )
		RETVAL=$?
		debian_end
  		;;
	redhat)
        	echo -n $"Reloading ${NAME} configuration: "
        	killproc ${NAME} -HUP
		RETVAL=$?
        	echo
        	;;
	suse)
		echo -n "Reload service ${NAME}"
		/sbin/killproc -HUP $DAEMON
		RETVAL=$? 
		if [ $RETVAL -eq 0 ]; then
			return=$rc_done
		else
			return=$rc_failed
		fi
		echo -e "$return"
		;;
	*)
		echo -n "Reloading ${NAME} ... "
		$DAEMON reload
		RETVAL=$?
		generic_end
		;;
	esac
	;;

  status)
	case "$DISTRO" in
	redhat)
        	status ${NAME}
		exit $?
        	;;
	suse)
		echo -n "Checking for service ${NAME}: "
		/sbin/checkproc $DAEMON
		RETVAL=$? 
		if [ $RETVAL -eq 0 ]; then
			return="OK"
		else
			return="No process"
		fi
		echo "$return"
		exit $RETVAL
		;;
	*)
		$DAEMON status
		ERRNUM=$?
		log_stat_msg ${ERRNUM}
		exit ${ERRNUM}
		;;
	esac
	;;

  *)
	echo "$0 usage: {start|stop|status|restart|reload}"
	exit 1
	;;
esac

exit $RETVAL