]> git.proxmox.com Git - gfs2-utils.git/blob - debian/postinst
initial commit
[gfs2-utils.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for gfs2-utils
3
4 set -e
5
6 case "$1" in
7 configure)
8 ;;
9
10 abort-upgrade|abort-remove|abort-deconfigure)
11 ;;
12
13 *)
14 echo "postinst called with unknown argument \`$1'" >&2
15 exit 1
16 ;;
17 esac
18
19 # dh_installdeb will replace this with shell code automatically
20 # generated by other debhelper scripts.
21
22 #DEBHELPER#
23
24 exit 0