blob: 734a02cdbcbe00432f9a546310fb5482a0d20b07 (
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
|
#!/sbin/openrc-run
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need localmount
use logger
}
get_config() {
set -- ${WATCHDOG_OPTS}
while [ -n "$1" ] ; do
if [ "$1" = "-c" -o "$1" = "--config-file" ] ; then
echo $2
return
fi
shift
done
echo /etc/watchdog.conf
}
get_delay() {
# man this is fugly
sed -n \
-e '1{x;s:.*:10:;x}' \
-e 's:#.*::' \
-e 's:^[[:space:]]*::' \
-e '/^interval/{s:.*=::;h}' \
-e '${g;p}' \
$(get_config)
}
start() {
ebegin "Starting watchdog"
start-stop-daemon --start \
--exec /usr/sbin/watchdog --pidfile /var/run/watchdog.pid \
-- ${WATCHDOG_OPTS}
eend $?
}
stop() {
ebegin "Stopping watchdog"
start-stop-daemon --stop \
--exec /usr/sbin/watchdog --pidfile /var/run/watchdog.pid \
--retry $(get_delay)
eend $?
}
|