Move bootlocal.*, haltlocal.* to grml-live
[grml-autoconfig.git] / debian / postrm
index c61a0d7..319eb36 100755 (executable)
@@ -3,17 +3,6 @@ set -e
 
 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:
-  INITSCRIPT=bootlocal
-  INITNAME=/etc/init.d/$INITSCRIPT
-  if [ -r "${INITNAME}.first" ] ; then
-    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#