1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
#! /bin/sh
#
# initscripts postrm
#
set -e
INITSCRIPTS="mountkernfs.sh mount-configfs brightness hostname.sh mountdevsubfs.sh checkroot.sh \
checkroot-bootclean.sh checkfs.sh mountall.sh mountall-bootclean.sh \
mountnfs.sh mountnfs-bootclean.sh bootmisc.sh urandom halt reboot \
udev umountroot umountfs umountnfs.sh sendsigs killprocs single motd \
bootlogs rc.local rmnologin hwclock.sh"
case "$1" in
purge)
#
# Remove abandoned conffiles
#
rm -f /etc/init.d/bootclean
rm -f /etc/init.d/bootclean.dpkg-old
rm -f /etc/init.d/bootclean.sh
rm -f /etc/init.d/bootclean.sh.dpkg-old
rm -f /etc/default/bootlogd
rm -f /etc/default/bootlogd.dpkg-old
rm -f /var/lib/urandom/random-seed
#
# Remove configuration files
#
rm -f \
/etc/default/rcS \
/etc/motd.tail \
/etc/motd.static
#
# Remove state files
#
rm -f /var/lib/initscripts/brightness*
rm -f /var/lib/initscripts/nologin
#
# Remove run time state files
#
rm -f /var/run/motd
#
# Remove log files
#
rm -f \
/var/log/dmesg \
/var/log/boot \
/var/log/fsck/checkroot \
/var/log/fsck/checkfs
# Remove rc symlinks in the reverse dependency order they were
# inserted
for F in $INITSCRIPTS; do
REVERSE="$F $REVERSE"
done
for F in $REVERSE; do
update-rc.d $F remove >/dev/null || exit $?
done
for F in $INITSCRIPTS; do
SERVICE="$(basename $F .sh).service"
if [ -L /etc/systemd/system/$SERVICE ]; then
rm /etc/systemd/system/$SERVICE
fi
done
# Remove /dev/pts and /dev/shm ?
;;
esac
#DEBHELPER#
:
|