Package: vzctl
Version: 3.0.24-7
Severity: important
Tags: patch



Hi Ola,

due a typo in vzctl.postinst, vzeventd isn't start at any bootup
so the ct reboot feature is broken.

manual fix on running systems:
% update-rc.d vzeventd defaults, /etc/init.d/vzeventd start

Attached patch fix this.

Bye,
 Thorsten
--
Thorsten Schifferdecker
diff -Naur vzctl-3.0.24.orig/debian/vzctl.postinst vzctl-3.0.24/debian/vzctl.postinst
--- vzctl-3.0.24.orig/debian/vzctl.postinst     2010-10-13 10:57:44.000000000 +0000
+++ vzctl-3.0.24/debian/vzctl.postinst  2010-10-13 11:02:42.214336272 +0000
@@ -23,7 +23,7 @@
        if [ -x "/etc/init.d/vz" ] ; then
            update-rc.d vz defaults >/dev/null
        fi
-       if [ -x "/etc/inid.d/vz" ] ; then
+       if [ -x "/etc/init.d/vzeventd" ] ; then
            update-rc.d vzeventd defaults >/dev/null
         fi
        # No idea to start here as no virtual host can have been configured

Reply via email to