Release new version 1:20210208+grml.5
[live-boot-grml.git] / debian / live-boot.postinst
1 #!/bin/sh
2
3 set -e
4
5 case "${1}" in
6         configure)
7                 mkdir -p /etc/live/boot
8                 ;;
9
10         abort-upgrade|abort-remove|abort-deconfigure)
11
12                 ;;
13
14         *)
15                 echo "postinst called with unknown argument \`${1}'" >&2
16                 exit 1
17                 ;;
18 esac
19
20 #DEBHELPER#
21
22 exit 0