-
Notifications
You must be signed in to change notification settings - Fork 7
/
eemo_sensor.rc
executable file
·90 lines (78 loc) · 1.8 KB
/
eemo_sensor.rc
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
#!/bin/sh
#
# eemo_sensor This shell script takes care of starting and stopping
# the Extensible Ethernet Monitor sensor daemon
#
# chkconfig: - 99 99
### BEGIN INIT INFO
# Provides: $eemo_sensor
# Required-Start: $network $local_fs
# Required-Stop: $network $local_fs
# Should-Start: $syslog
# Should-Stop: $syslog
# Short-Description: The Extensible Ethernet Monitor Sensor Daemon
# Description: The Extensible Ethernet Monitor Sensor Daemon
### END INIT INFO
# Source function library.
. /etc/rc.d/init.d/functions
prog="eemo_sensor"
exec="/usr/sbin/eemo_sensor"
config="/etc/eemo_sensor.conf"
pidfile="/var/run/eemo_sensor.pid"
[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
lockfile=/var/lock/subsys/$prog
start() {
[ -x $exec ] || exit 5
[ -f $config ] || exit 6
echo -n $"Starting $prog: "
# if not running, start it up here
daemon --pidfile=$pidfile $exec -c $config -p $pidfile
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
# stop it here, often "killproc $prog"
killproc -p $pidfile $prog
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
stop
start
}
rh_status() {
# run checks to determine if the service is running or use generic status
status -p $pidfile $prog
}
rh_status_q() {
rh_status -p $pidfile >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart)
$1
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
restart
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
exit 2
esac
exit $?