Hello,

I had similar problem,

I found, that  there is probably a typo in post-remove script:

   /var/lib/dpkg/info/libc6.postinst

about line 166:

   invoke-rc.d -query ${service} start ; status=$?

there should probably be two hyphens before "query":

   invoke-rc.d --query ${service} start ; status=$?

After that correction, the script still didn't work for me,
until I've surrounded this line with "set +e ... set -e".

Finally, I've replaced that single line, with three as fillows:

           set +e
           invoke-rc.d --query ${service} start ; status=$?
           set -e

It seems to work, but I'm uncertain about side effects.

Regards!

--
Pawel Tomulik




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to