diff options
author | Guillem Jover <guillem@debian.org> | 2006-10-04 02:26:57 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-06-10 23:21:21 +0200 |
commit | e764bb7ba4d2e702e9d11c268f2cb1de9490a396 (patch) | |
tree | 6835b89c9005082cc47969a85e8a4aff020f669f | |
parent | 4cc53b4a67baf30970fd629d39ff82f0a7ea1753 (diff) | |
download | inetutils-e764bb7ba4d2e702e9d11c268f2cb1de9490a396.tar.gz |
Add LSB dependency information to the init scripts for inetd and syslogd
Remove invalid comments.
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/inetutils-inetd.init | 19 | ||||
-rw-r--r-- | debian/inetutils-syslogd.init | 17 |
3 files changed, 20 insertions, 18 deletions
diff --git a/debian/changelog b/debian/changelog index 634ba1b..327f80e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ inetutils (2:1.4.3+20060719-3) UNRELEASED; urgency=low * Fix typos in inetutils-inetd manpage. (Closes: #389124) - debian/patches/11_inetd_doc.patch: New file. Thanks to Stephen Liebbe <sliebbe@gmail.com>. + * Add LSB dependency information to the init scripts for inetutils-inetd + and inetutils-syslogd, and remove invalid comments. -- Guillem Jover <guillem@debian.org> Tue, 3 Oct 2006 04:35:45 +0300 diff --git a/debian/inetutils-inetd.init b/debian/inetutils-inetd.init index 09a3e1b..3957e6c 100644 --- a/debian/inetutils-inetd.init +++ b/debian/inetutils-inetd.init @@ -1,13 +1,14 @@ #! /bin/sh -# -# inetutils-inetd Script to start and stop internet superserver -# -# Written by Miquel van Smoorenburg <miquels@cistron.nl>. -# Modified for Debian -# by Ian Murdock <imurdock@gnu.ai.mit.edu>. -# -# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl -# +### BEGIN INIT INFO +# Provides: inetd +# Required-Start: $local_fs $remote_fs +# Required-Stop: $local_fs $remote_fs +# Should-Start: $syslog +# Should-Stop: $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start or stop the internet superserver. +### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/inetutils-inetd diff --git a/debian/inetutils-syslogd.init b/debian/inetutils-syslogd.init index f408f59..90210d9 100644 --- a/debian/inetutils-syslogd.init +++ b/debian/inetutils-syslogd.init @@ -1,13 +1,12 @@ #! /bin/sh -# -# inetutils-syslogd Script to start and stop syslog daemon -# -# Written by Miquel van Smoorenburg <miquels@cistron.nl>. -# Modified for Debian -# by Ian Murdock <imurdock@gnu.ai.mit.edu>. -# -# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl -# +### BEGIN INIT INFO +# Provides: syslog +# Required-Start: $local_fs $network $time +# Required-Stop: $local_fs $network $time +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start or stop the syslog daemon. +### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/syslogd |