diff options
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/dbus.init | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index cec49d5a..84dcb491 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ dbus (1.8.10-1) UNRELEASED; urgency=medium - raise dbus-daemon's file descriptor limit to 65536 to avoid an opportunity for denial of service (CVE-2014-7824, an incomplete fix for CVE-2014-3636) + * Start 'dbus-daemon --system' as root under sysvinit (it already + starts as root under systemd), so it can increase its file + descriptor limit -- Simon McVittie <smcv@debian.org> Thu, 06 Nov 2014 15:57:06 +0000 diff --git a/debian/dbus.init b/debian/dbus.init index 9f9453a8..4f41293f 100644 --- a/debian/dbus.init +++ b/debian/dbus.init @@ -69,7 +69,7 @@ start_it_up() log_daemon_msg "Starting $DESC" "$NAME" start-stop-daemon --start --quiet --pidfile $PIDFILE \ - --user $DAEMONUSER --exec $DAEMON -- --system $PARAMS + --exec $DAEMON -- --system $PARAMS log_end_msg $? } |