Comment 30 for bug 767498

Revision history for this message
Matthias Andree (matthias-andree) wrote :

Re comment #21: I'm not sure what exactly has been changed yet (haven't seen the new package), but the /etc/init/apport.conf was bogus:

pre-start script
    . /etc/default/apport
    [ "$enabled" = "1" ] || [ "$force_start" = "1" ]
...

This fails if neither enabled is 1 nor force_start is 1. It should be:

pre-start script
    . /etc/default/apport
    [ "$enabled" = "1" ] || [ "$force_start" = "1" ] || exit 0
...