forked from phbaer/lxc-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lxc-watchdog.sh
executable file
·240 lines (200 loc) · 4.66 KB
/
lxc-watchdog.sh
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#! /bin/sh
### BEGIN INIT INFO
# Provides: lxc-watchdog
# Required-Start: $remote_fs $named $network $time
# Required-Stop: $remote_fs $named $network
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Manage Linux Containers startup/shutdown
# Description: Uses clever inotify hack to monitor container's
# halt/reboot events watching /var/run/utmp
### END INIT INFO
# Author: Dobrica Pavlinusic <[email protected]>
#
# based on Tony Risinger post to lxc-users mailing list
# http://www.mail-archive.com/[email protected]/msg00074.html
#
# Install with:
# ln -sf /srv/sysadmin-cookbook/recepies/lxc/lxc-watchdog.sh /etc/init.d/lxc-watchdog
# update-rc.d lxc-watchdog defaults
#
# Changelog:
#
# 2010-05-01 phbaer <[email protected]>
#
# * Dropped inittab modification in favour of upstart
# * Added state tracking in order to get along with unknown runlevels
which inotifywait >/dev/null || apt-get install inotify-tools
lxc_exists() {
name=$1
if [ ! -e /var/lib/lxc/$name/config ] ; then
echo "Usage: $0 name"
lxc_status
exit 1
fi
}
lxc_rootfs() {
grep '^ *lxc\.rootfs *=' "/var/lib/lxc/$1/config" | cut -d= -f2 | sed 's/^ *//'
}
lxc_status() {
( find /var/lib/lxc/ -name "config" | cut -d/ -f5 | sort -u | xargs -i lxc-info -n {} | sed "s/'//g" | while read name is status ; do
boot="-"
test -s /var/lib/lxc/$name/on_boot && boot="boot"
echo "$name $status $boot $(lxc_rootfs $name)"
done ) | column -t
}
cleanup_init_scripts() {
rootfs=$(lxc_rootfs $1)
ls \
$rootfs/etc/rc?.d/*umountfs \
$rootfs/etc/rc?.d/*umountroot \
$rootfs/etc/rc?.d/*hwclock* \
2>/dev/null | xargs -i rm -v {}
}
lxc_log() {
echo `date +%Y-%m-%dT%H:%M:%S` $*
}
lxc_kill() {
name=$1
command=$2
# init_pid=`lxc-ps -C init -o pid | grep "^$name" | cut -d" " -f2-`
# if [ -z "$init_pid" ] ; then
# lxc-info -n $name
# exit 1
# fi
# lxc_log "$name kill $sig $init_pid"
# /bin/kill $sig $init_pid
lxc_log "$name $command"
ssh lxc-${name} ${command}
}
lxc_stop() {
lxc_log "$name stop"
lxc_kill $name "halt"
lxc-wait -n $name -s STOPPED
lxc_log "$name stoped"
# rm -f /var/lib/lxc/${name}/on_boot
}
lxc_start() {
name=$1
if ! lxc-info -n $name | grep RUNNING ; then
lxc_log "$name start"
lxc-start -n $name -o /tmp/${name}.log -d
lxc-wait -n $name -s RUNNING
lxc-info -n $name
test -f /var/lib/lxc/${name}/on_boot || echo $name > /var/lib/lxc/${name}/on_boot
fi
}
lxc_watchdog() {
name=$1
rootfs=$(lxc_rootfs $1)
state=""
while true; do
vps_utmp=${rootfs}/var/run/utmp
tasks=`wc -l < /cgroup/${name}/tasks`
# track the state in order to ignore unknown runlevels (e.g. "unknown")
runlevel="$(runlevel ${vps_utmp})"
case $runlevel in
N*)
state="booting"
;;
??2)
state="running"
;;
??0)
state="halt"
;;
??6)
state="reboot"
;;
esac
test -z "$tasks" && exit 1
if [ "$tasks" -eq 1 ]; then
lxc_log "$name runlevel $runlevel ($state)"
case $state in
"halt")
lxc_log "$name halt"
lxc-stop -n "${name}"
lxc-wait -n ${name} -s STOPPED
state="stopped"
break
;;
"reboot")
lxc_log "$name reboot";
lxc-stop -n ${name}
lxc-wait -n ${name} -s STOPPED
lxc-start -d -n ${name} -o /tmp/${name}.log
state="booting"
;;
*)
# make sure vps is still running
state="$(lxc-info -n "${name}" | sed -e 's/.* is //')"
[ "$state" = "RUNNING" ] || break
;;
esac
else
lxc_log "$name $tasks tasks"
fi
# poll every 5 seconds
inotifywait -qqt 5 ${vps_utmp}
done
lxc_log "$name watchdog exited"
}
usage() {
echo "Usage: $0 {start|stop|restart|status|boot|disable} [name name ... ]" >&2
exit 3
}
command_on_lxc() {
command=$1
shift
echo "# $command $1"
case "$command" in
start)
lxc_exists $1
cleanup_init_scripts $1
lxc_start $1
lxc-wait -n $1 -s RUNNING
# give container 5 seconds to start more than one process
( sleep 1 ; nohup $0 watchdog $1 >> /tmp/$1-watchdog.log 2>/dev/null ) &
;;
stop|halt)
lxc_exists $1
lxc_stop $1
;;
reload|force-reload|restart|reboot)
lxc_kill $1 "reboot"
;;
watchdog)
lxc_watchdog $1
;;
boot)
echo $1 > /var/lib/lxc/$1/on_boot
;;
disable)
echo -n > /var/lib/lxc/$1/on_boot
;;
*)
usage
;;
esac
}
command=$1
test -z "$command" && usage
test "$command" = "status" && lxc_status && exit
shift
if [ -z "$1" ] ; then
ls /var/lib/lxc/*/on_boot | while read path ; do
name=`echo $path | cut -d/ -f5`
if [ "$command" != "start" -o "$command" = "start" -a -s $path ] ; then
command_on_lxc $command $name
else
echo "# skip $command $name"
fi
done
else
while [ ! -z "$1" ] ; do
command_on_lxc $command $1
shift
done
fi