X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=debian%2Fpostrm;h=c61a0d7b4410a220335ff3e93da6733a0fa0a4a4;hp=b0e8fcc3f71762e37927a911e9a6591bc794af8e;hb=34aa2a2ab415ddb372b9f3d9ad68a0467f270621;hpb=efd6786e49003dac27e4ff9f038a1e134ce43cca diff --git a/debian/postrm b/debian/postrm index b0e8fcc..c61a0d7 100755 --- a/debian/postrm +++ b/debian/postrm @@ -5,16 +5,17 @@ if [ "$1" = "purge" ]; then update-rc.d grml-autoconfig remove >/dev/null || exit 0 # don't delete /etc/init.d/bootlocal* scripts, even not when purging - notice therefore: - . /etc/grml/lsb-functions INITSCRIPT=bootlocal INITNAME=/etc/init.d/$INITSCRIPT if [ -r "${INITNAME}.first" ] ; then - ewarn "Notice: ${INITNAME}.{first,middle,last} won't be deleted automatically." ; eend 0 - ewarn "If you want to remove them delete them manually and then run:" + echo "Notice: ${INITNAME}.{first,middle,last} won't be deleted automatically." + echo "If you want to remove them delete them manually and then run:" echo " update-rc.d ${INITSCRIPT}.first remove" echo " update-rc.d ${INITSCRIPT}.middle remove" echo " update-rc.d ${INITSCRIPT}.last remove" fi fi +#DEBHELPER# + exit 0