From e71d6323f49abd4a1c86577066dad7a34c1cef66 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Sun, 20 Jan 2008 13:55:17 +0000 Subject: [PATCH] Fix the init.d script The script (which is geared towards Debian) is actually not fully compliant, as lintian generates a warning on it - the S runlevel is not a valid one in the "Stop" stanza. This patch removes "S" from the stop list. Reviewed-by: imsnah --- doc/examples/ganeti.initd.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/ganeti.initd.in b/doc/examples/ganeti.initd.in index 4525952b1..99079fc48 100644 --- a/doc/examples/ganeti.initd.in +++ b/doc/examples/ganeti.initd.in @@ -6,9 +6,9 @@ # Required-Start: $syslog $remote_fs xend # Required-Stop: $syslog $remote_fs xend # Default-Start: 2 3 4 5 -# Default-Stop: S 0 1 6 +# Default-Stop: 0 1 6 # Short-Description: Ganeti Xen Cluster Manager -# Description: Ganeti Xen Cluster Manager +# Description: Ganeti Xen Cluster Manager ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin -- GitLab