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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
#!/bin/sh
#
# Evmsd OCF RA.
#
# Copyright (c) 2004 SUSE LINUX AG, Jo De Baer
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# Further, this software is distributed without any warranty that it is
# free of the rightful claim of any third person regarding infringement
# or the like. Any license provided herein, whether implied or
# otherwise, applies only to this software file. Patent licenses, if
# any, provided herein do not apply to combinations of this program with
# other software, or any other product whatsoever.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
#
#######################################################################
# Initialization:
: ${OCF_FUNCTIONS_DIR=${OCF_ROOT}/lib/heartbeat}
. ${OCF_FUNCTIONS_DIR}/ocf-shellfuncs
# Parameter defaults
OCF_RESKEY_ignore_deprecation_default="false"
: ${OCF_RESKEY_ignore_deprecation=${OCF_RESKEY_ignore_deprecation_default}}
#######################################################################
meta_data() {
cat <<END
<?xml version="1.0"?>
<!DOCTYPE resource-agent SYSTEM "ra-api-1.dtd">
<resource-agent name="Evmsd" version="1.0">
<version>1.0</version>
<longdesc lang="en">
Deprecation warning: EVMS is no longer actively maintained and should not be used. This agent is deprecated and may be removed from a future release. --
This is a Evmsd Resource Agent.
</longdesc>
<shortdesc lang="en">Controls clustered EVMS volume management
(deprecated)</shortdesc>
<parameters>
<parameter name="ignore_deprecation">
<longdesc lang="en">
If set to true, suppresses the deprecation warning for this agent.
</longdesc>
<shortdesc lang="en">Suppress deprecation warning</shortdesc>
<content type="boolean" default="${OCF_RESKEY_ignore_deprecation_default}" />
</parameter>
</parameters>
<actions>
<action name="start" timeout="20s" />
<action name="stop" timeout="20s" />
<action name="monitor" timeout="20s" interval="10s" depth="0" />
<action name="meta-data" timeout="5s" />
</actions>
</resource-agent>
END
}
#######################################################################
evmsd_usage() {
cat <<END
usage: $0 {start|stop|monitor|meta-data}
Expects to have a fully populated OCF RA-compliant environment set.
END
}
evmsd_start() {
local PID=`pgrep evmsd`
if [ -z $PID ] ; then
nohup /sbin/evmsd &
# Spin waiting for the server to come up.
# Let the CRM/LRM time us out if required
start_wait=1
while [ $start_wait = 1 ]; do
if evmsd_monitor ; then
sleep 1
return $OCF_SUCCESS
else
sleep 1
fi
done
else
# already running
return $OCF_SUCCESS
fi
}
evmsd_stop() {
local PID=`pgrep evmsd`
if [ -z $PID ] ; then
# not running
return $OCF_SUCCESS
else
/bin/kill -15 $PID
sleep 1
/bin/kill -9 $PID
# Spin waiting for the server to go down.
# Let the CRM/LRM time us out if required
stop_wait=1
while [ $stop_wait = 1 ]; do
if evmsd_monitor ; then
sleep 1
else
return $OCF_SUCCESS
fi
done
fi
}
evmsd_monitor() {
local PID=`pgrep evmsd`
if [ -z $PID ] ; then
return $OCF_NOT_RUNNING
else
return $OCF_SUCCESS
fi
}
if [ "$__OCF_ACTION" = "meta-data" ]; then
meta_data
exit $OCF_SUCCESS
fi
# Be obnoxious, log deprecation warning on every invocation (unless
# suppressed by resource configuration).
ocf_deprecated
case $__OCF_ACTION in
start) evmsd_start;;
stop) evmsd_stop;;
monitor) evmsd_monitor;;
usage|help) evmsd_usage
exit $OCF_SUCCESS
;;
*) evmsd_usage
exit $OCF_ERR_UNIMPLEMENTED
;;
esac
rc=$?
ocf_log debug "${OCF_RESOURCE_INSTANCE} $__OCF_ACTION : $rc"
exit $rc
|