-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlmd.erb
executable file
·69 lines (59 loc) · 1.25 KB
/
lmd.erb
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
#! /bin/sh
# start / stop script for logmailer.rb
#
# logmailer.rb - this script starts and stops the logmailer daemon
#
# chkconfig: 2345 98 02
# description: LogMailer Daemon control script
# Source function library.
. /etc/init.d/functions
test -x /opt/logmailer/logmailer.rb || exit 0
RETVAL=0
start() {
# Check if logmailer.rb is already running
if [ ! -f /var/lock/subsys/logmailer.rb ]; then
echo -n $"Starting $prog: "
daemon /opt/logmailer/logmailer.rb && success || failure
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/logmailer.rb
echo
fi
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killall logmailer.rb # neccessary to kill children
RETVAL=$?
rm -f /var/lock/subsys/logmailer.rb
echo
return $RETVAL
}
restart() {
stop
start
}
reload() {
restart
}
status_at() {
status /opt/logmailer/logmailer.rb
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload|restart)
restart
;;
status)
status_at
;;
*)
echo $"Usage: $0 {start|stop|restart|status}"
exit 1
esac
exit $?
exit $RETVAL