--- recepies/lxc/lxc-watchdog.sh 2010/05/26 10:19:05 216 +++ recepies/lxc/lxc-watchdog.sh 2010/09/11 12:19:12 229 @@ -46,6 +46,7 @@ boot="-" hostname=`cat $(lxc_rootfs $name)/etc/hostname` ip=`grep address $(lxc_rootfs $name)/etc/network/interfaces | sed 's/.*address //'` + test -z "$ip" && ip=`grep lxc.network.ipv4 /var/lib/lxc/$name/config | cut -d= -f2` test -s /var/lib/lxc/$name/on_boot && boot="boot" echo "$name $status $boot $(lxc_rootfs $name) $ip $hostname" done ) | column -t @@ -59,7 +60,10 @@ $rootfs/etc/rc?.d/*umountfs \ $rootfs/etc/rc?.d/*umountroot \ $rootfs/etc/rc?.d/*hwclock* \ + $rootfs/etc/rc?.d/*udev* \ 2>/dev/null | xargs -i rm -v {} + + echo $1 > $rootfs/etc/hostname } @@ -70,7 +74,7 @@ # let container respond to kill -SIGPWR inittab=$rootfs/etc/inittab - if ! grep "$add" ${inittab} >/dev/null ; then + if test -e $inittab && ! grep "$add" ${inittab} >/dev/null ; then grep -v "$remove" ${inittab} > ${inittab}.new echo $add >> ${inittab}.new mv ${inittab}.new ${inittab} @@ -108,6 +112,12 @@ lxc_start() { name=$1 + rootfs=$(lxc_rootfs $1) + + if [ ! -e $rootfs ] ; then + echo "ERROR $name rootfs $rootfs not found" + return + fi if ! lxc-info -n $name | grep RUNNING ; then lxc_log "$name start"