Comment 6 for bug 102684

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 102684] Re: Don't ask me to restart Firefox when it's not running

On Wed, Apr 04, 2007 at 10:31:55PM -0000, Matthew Paul Thomas wrote:
> I was the only user logged in, and just to make sure, I did "ps aux |
> grep firefox" immediately after the alert appeared, and nothing showed
> up (except the grep itself).
>
> I might have had Epiphany running, though, I don't remember. Could that
> have caused the problem?
>

No that should not matter as in .postinst:

unud=/var/lib/update-notifier/user.d

if pgrep firefox-bin >/dev/null 2>&1 && test -d $unud; then
    cp -f /usr/share/firefox/firefox-restart-required.update-notifier
    \
        "$unud/firefox-restart-required"
fi

so as long as there is no firefox-bin process the file will not get
copied over ... can you reproduce? e.g. by reinstalling?

 - Alexander