This happens because of these automatically generated lines in the postinst:
# Automatically added by dh_installinit
if [ -e "/etc/init/dbus.conf" ]; then
        invoke-rc.d dbus start || exit $?
fi

Running this in the chroot on its own yields:
$ invoke-rc.d dbus start
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service dbus start

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start dbus
start: Unknown job: dbus
invoke-rc.d: initscript dbus, action "start" failed.
[1]

Or simply:
$ start dbus
start: Unknown job: dbus
[1]
$ status dbus
status: Unknown job: dbus
[1]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/728434

Title:
  [natty] dbus fails to install in a schroot

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to