]> code.ossystems Code Review - openembedded-core.git/commitdiff
update-rc.d: use '-f' option in updatercd_postrm
authorChen Qi <Qi.Chen@windriver.com>
Tue, 17 Feb 2015 02:08:14 +0000 (10:08 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 17 Feb 2015 22:29:04 +0000 (22:29 +0000)
Use '-f' ('--force') option so that while removing packages using deb,
we don't fail because of the following error:

   update-rc.d: $initd/$bn exists during rc.d purge (use -f to force)

Using '-f' option would make this a warning but continue to execute.

   update-rc.d: $initd/$bn exists during rc.d purge (continuing)

We need this option because dpkg package backend have special handling for
configuration files. And if files under /etc/init.d are treated as configuration
files, we will have errors.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/update-rc.d.bbclass

index bc1aa7dad66b381d30f4ba1bc88745d4a93c4a29..a9c0323f95fe9576da4b596bba36238cb06cd62c 100644 (file)
@@ -48,9 +48,9 @@ fi
 updatercd_postrm() {
 if type update-rc.d >/dev/null 2>/dev/null; then
        if [ -n "$D" ]; then
-               OPT="-r $D"
+               OPT="-f -r $D"
        else
-               OPT=""
+               OPT="-f"
        fi
        update-rc.d $OPT ${INITSCRIPT_NAME} remove
 fi