Release new version 1:20210208+grml.5
[live-boot-grml.git] / debian / live-boot.postrm
1 #!/bin/sh
2
3 set -e
4
5 case "${1}" in
6         purge)
7                 rmdir --ignore-fail-on-non-empty /etc/live/boot > /dev/null 2>&1 || true
8                 rmdir --ignore-fail-on-non-empty /etc/live > /dev/null 2>&1 || true
9                 ;;
10
11         remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
12
13                 ;;
14
15         *)
16                 echo "postrm called with unknown argument \`${1}'" >&2
17                 exit 1
18                 ;;
19 esac
20
21 #DEBHELPER#
22
23 exit 0