blob: 50b9d5ce75cd31741cb008d4cabc74cde3e51d51 (
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
|
#!/sbin/openrc-run
# Copyright 1999-2005 Gentoo Foundation
# Adaption of the original RedHat script
# Original Copyright (C) 2003 Red Hat, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
use net
need cman
}
# We'd like a reload method as well
opts="${opts} reload"
ID="Cluster Resource Manager"
RGMGRD=$(which clurgmgrd)
RMTABD=$(which clurmtabd)
CFG_FILE="/etc/cluster/cluster.conf"
LOG_ERR=3
LOG_WARNING=4
LOG_NOTICE=5
LOG_INFO=6
#
# If we're not configured, then don't start anything.
#
[ -f "$CFG_FILE" ] || exit 0
#
# log_and_print <level> <message>
#
function log_and_print()
{
if [ -z "$1" -o -z "$2" ]; then
return 1;
fi
clulog -p $$ -n "rgmanager" -s $1 "$2"
echo $2
return 0;
}
#
# Bring down the cluster on a node.
#
function stop_cluster()
{
kill -TERM $(pidof $RGMGRD)
while [ 0 ]; do
if [ -n "`pidof $RGMGRD`" ]; then
while [ -n "`pidof $RGMGRD`" ]; do
sleep 1
done
einfo "Waiting for $(basename ${RGMGRD})"
else
eend "Services are stopped."
fi
# Ensure all NFS rmtab daemons are dead.
killall $(basename ${RMTABD}) &> /dev/null
rm -f /var/run/$(basename ${RGMGRD}).pid
return 0
done
}
function start() {
ebegin "Starting cluster resource manager"
start-stop-daemon --start --quiet --exec ${RGMGRD} ${RGMGR_OPTS}
ret=$?
if [ $ret -eq 0 ]; then
touch /var/lock/subsys/rgmanager
fi
eend $ret
}
function restart() {
pidof ${RGMGRD} &> /dev/null
if [ ${?} -ne 1 ]; then
svc_stop
fi
svc_start
}
function reload() {
clulog -p ${LOG_NOTICE} "Reloading Resource Configuration."
ebegin "Reloading Resource Configuration "
kill -s HUP $(pidof ${RGMGRD} )
rv=${?}
eend
exit ${rv}
}
function stop() {
ebegin "Shutting down cluster resource manager"
if [ -n "$(pidof ${RGMGRD})" ]; then
stop_cluster
fi
rm -f /var/lock/subsys/rgmanager
eend
}
|