Re: Katastrophic Koala upgrade - system completely borked...
The only error that is really of interest is the first one, in which the dbus.postinst script fails. All the others are a result of that. I have not seen the actual output with "set -x" so I don't know for sure exactly where it is failing but I think it is this line near the end of the script.
That $? is telling it to return the status of the last command, so if update-rc.d -f dbus remove fails the script fails. Edit that script and change $? to 0, that is a zero. It will then read
That should generate some movement.
The only error that is really of interest is the first one, in which the dbus.postinst script fails. All the others are a result of that. I have not seen the actual output with "set -x" so I don't know for sure exactly where it is failing but I think it is this line near the end of the script.
update-rc.d -f dbus remove >/dev/null || exit $?
update-rc.d -f dbus remove >/dev/null || exit 0
Comment