diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/rsyslog.default | 4 | ||||
-rw-r--r-- | debian/rsyslog.init | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index db9a4e2..7eac7d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +rsyslog (2.0.0-2) unstable; urgency=low + + * debian/rsyslog.init + - Fix LSB init header. Use $remote_fs instead of $local_fs as the rsyslogd + daemon requires /usr to be mounted. + + -- Michael Biebl <biebl@debian.org> Thu, 10 Jan 2008 13:22:42 +0100 + rsyslog (2.0.0-1) unstable; urgency=low * New upstream release of the stable branch of rsyslog v2. diff --git a/debian/rsyslog.default b/debian/rsyslog.default index d12c4a0..4c81b93 100644 --- a/debian/rsyslog.default +++ b/debian/rsyslog.default @@ -1,11 +1,11 @@ -# Options to rsyslogd +# Options for rsyslogd # -m 0 disables 'MARK' messages. # -r enables logging from remote machines # -x disables DNS lookups on messages recieved with -r # See rsyslogd(8) for more details RSYSLOGD_OPTIONS="-m 0" -# Options to rklogd +# Options for rklogd # -2 prints all kernel oops messages twice; once for klogd to decode, and # once for processing with 'ksymoops' # -x disables all klogd processing of oops messages entirely diff --git a/debian/rsyslog.init b/debian/rsyslog.init index 9b71393..cf7eb91 100644 --- a/debian/rsyslog.init +++ b/debian/rsyslog.init @@ -1,8 +1,8 @@ #! /bin/sh ### BEGIN INIT INFO # Provides: syslog -# Required-Start: $local_fs $time -# Required-Stop: $local_fs $time +# Required-Start: $remote_fs $time +# Required-Stop: $remote_fs $time # Should-Start: $network # Should-Stop: $network # Default-Start: 2 3 4 5 |