summaryrefslogtreecommitdiffstats
path: root/agents/manual/fence_ack_manual.in
blob: e8b499802911fd396d8f4690e113b11317a52d0b (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
#!/bin/bash
#
# Manual override after fencing has failed.
#

if [ "$1" = "-n" ]; then
	shift
fi

if [ -z "$1" ] || [ "${1:0:1}" = "-" ]; then
	echo "usage:"
        echo " 	$0 <nodename>"
        echo " 	$0 -n <nodename>"
	echo 
	echo "The -n flag exists to preserve compatibility with previous "
	echo "releases of $0, and is no longer required."
	exit 1
fi

declare answer

echo "About to override fencing for $1."
echo "Improper use of this command can cause severe file system damage."
echo
read -p "Continue [NO/absolutely]? " answer

if [ "$answer" != "absolutely" ]; then
	echo "Aborted."
	exit 1
fi

while ! [ -e @clustervarrun@/fenced_override ]; do
	sleep 1
done

echo $1>@clustervarrun@/fenced_override
echo Done