Fix a typo: the 10_linux we ispire from is from grub
[kboot-utils.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for kboot-utils
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 case "$1" in
9     configure)
10       # Update the kboot.conf on install
11       update-kboot 3>&-
12     ;;
13
14     abort-upgrade|abort-remove|abort-deconfigure)
15     ;;
16
17     *)
18         echo "postinst called with unknown argument \`$1'" >&2
19         exit 1
20     ;;
21 esac
22
23 # dh_installdeb will replace this with shell code automatically
24 # generated by other debhelper scripts.
25
26 #DEBHELPER#
27
28 exit 0