/[sysadmin-cookbook]/recepies/lxc/lxc-watchdog.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /recepies/lxc/lxc-watchdog.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 186 by dpavlin, Tue Mar 16 20:53:59 2010 UTC revision 188 by dpavlin, Tue Mar 16 22:00:20 2010 UTC
# Line 105  lxc_start() { Line 105  lxc_start() {
105          fi          fi
106  }  }
107    
108    lxc_log() {
109            echo `date +%Y-%m-%dT%H:%M:%S` $*
110    }
111    
112  lxc_watchdog() {  lxc_watchdog() {
113  name=$1  name=$1
114  rootfs=$(lxc_rootfs $1)  rootfs=$(lxc_rootfs $1)
# Line 116  while true; do Line 120  while true; do
120          if [ "$tasks" -eq 1 ]; then          if [ "$tasks" -eq 1 ]; then
121    
122                  runlevel="$(runlevel ${vps_utmp})"                  runlevel="$(runlevel ${vps_utmp})"
123                  echo `date +%Y-%m-%dT%H:%M:%S` "$name runlevel $runlevel"                  lxc_log "$name runlevel $runlevel"
124    
125                  case $runlevel in                  case $runlevel in
126                  N*)                  N*)
127                          # nothing for new boot state                          # nothing for new boot state
128                  ;;                  ;;
129                  ??0)                  ??0)
130                          echo "$name halt"                          lxc_log "$name halt"
131                          lxc-stop -n "${name}"                          lxc-stop -n "${name}"
132                          lxc-wait -n ${name} -s STOPPED                          lxc-wait -n ${name} -s STOPPED
133                          break                          break
134                  ;;                  ;;
135                  ??6)                  ??6)
136                          echo "$name reboot";                          lxc_log "$name reboot";
137                          lxc-stop -n ${name}                          lxc-stop -n ${name}
138                          lxc-wait -n ${name} -s STOPPED                          lxc-wait -n ${name} -s STOPPED
139                          lxc-start -d -n ${name} -o /tmp/${name}.log                          lxc-start -d -n ${name} -o /tmp/${name}.log
# Line 141  while true; do Line 145  while true; do
145                  ;;                  ;;
146                  esac                  esac
147          else          else
148                  echo "# $name $tasks tasks"                  lxc_log "$name $tasks tasks"
149          fi          fi
150    
151          # time of 5 minutes on it JUST IN CASE...          # time of 5 minutes on it JUST IN CASE...
152          inotifywait -qqt 300 ${vps_utmp}          inotifywait -qqt 300 ${vps_utmp}
153  done  done
154    
155  echo "${name} exited"  lxc_log "$name exited"
156    
157  }  }
158    
# Line 180  reload|force-reload|restart|reboot) Line 184  reload|force-reload|restart|reboot)
184  watchdog)  watchdog)
185          lxc_watchdog $1          lxc_watchdog $1
186          ;;          ;;
187    boot)
188            echo $1 > /var/lib/lxc/$1/on_boot
189            ;;
190    disable)
191            echo -n > /var/lib/lxc/$1/on_boot
192            ;;
193  *)  *)
194          echo "Usage: $0 {start|stop|restart|status}" >&2          echo "Usage: $0 {start|stop|restart|status}" >&2
195          exit 3          exit 3
# Line 190  esac Line 200  esac
200  }  }
201    
202  command=$1  command=$1
 shift  
203    
204  test "$command" = "status" && lxc_status && exit  test "$command" = "status" && lxc_status && exit
205    
# Line 200  if [ -z "$1" ] ; then Line 209  if [ -z "$1" ] ; then
209                  command_on_lxc $command $name                  command_on_lxc $command $name
210          done          done
211  else  else
212            shift
213          while [ ! -z "$1" ] ; do          while [ ! -z "$1" ] ; do
214                  command_on_lxc $command $1                  command_on_lxc $command $1
215                  shift                  shift

Legend:
Removed from v.186  
changed lines
  Added in v.188

  ViewVC Help
Powered by ViewVC 1.1.26