blob: fad18dc42be573f507787bb3337ffe819bcafc90 (
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
|
#!/bin/sh
#
# bcfg-server - Bcfg2 configuration daemon
#
# chkconfig: 2345 19 81
# description: bcfg2 server for configuration requests
#
### BEGIN INIT INFO
# Provides: bcfg2-server
# Required-Start: $network $remote_fs $named
# Required-Stop: $network $remote_fs $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Configuration management Server
# Description: Bcfg2 is a configuration management system that builds
# installs configuration files served by bcfg2-server
### END INIT INFO
# Include lsb functions
. /lib/lsb/init-functions
# Commonly used stuff
DAEMON=/usr/sbin/bcfg2-server
PIDFILE=/var/run/bcfg2-server.pid
PARAMS="-D $PIDFILE"
# Disabled per default
BCFG2_SERVER_OPTIONS=""
BCFG2_SERVER_ENABLED=0
# Include default startup configuration if exists
test -f "/etc/default/bcfg2-server" && . /etc/default/bcfg2-server
if [ "$BCFG2_SERVER_ENABLED" -eq 0 ] ; then
log_failure_msg "bcfg2-server is disabled - see /etc/default/bcfg2-server"
exit 0
fi
# Exit if $DAEMON doesn't exist and is not executable
test -x $DAEMON || exit 5
# Internal variables
BINARY=$(basename $DAEMON)
start () {
echo -n "Starting Configuration Management Server: "
start_daemon ${DAEMON} ${PARAMS} ${BCFG2_SERVER_OPTIONS}
STATUS=$?
if [ "$STATUS" = 0 ]
then
log_success_msg "bcfg2-server"
test -d /var/lock/subsys && touch /var/lock/subsys/bcfg2-server
else
log_failure_msg "bcfg2-server"
fi
return $STATUS
}
stop () {
echo -n "Stopping Configuration Management Server: "
killproc -p $PIDFILE ${BINARY}
STATUS=$?
if [ "$STATUS" = 0 ]; then
log_success_msg "bcfg2-server"
test -d /var/lock/subsys && touch /var/lock/subsys/bcfg2-server
else
log_failure_msg "bcfg2-server"
fi
return $STATUS
}
status () {
# Inspired by redhat /etc/init.d/functions status() call
PID=$(pidof -x $BINARY)
if [ -n "$PID" ]; then
echo "$BINARY (pid $PID) is running..."
return 0
fi
if [ -f $PIDFILE ]; then
if [ -n "$PID" ]; then
log_failure_msg "$BINARY dead but pid file exists..."
return 1
fi
fi
log_failure_msg "$BINARY is not running"
return 3
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart|reload|force-reload)
stop
sleep 5
start
;;
*)
log_success_msg "Usage: $0 {start|stop|status|reload|restart|force-reload}"
exit 1
;;
esac
exit 0
|