]> git.proxmox.com Git - gfs2-utils.git/blame - debian/postinst
initial commit
[gfs2-utils.git] / debian / postinst
CommitLineData
1c268b5e
DM
1#!/bin/sh
2# postinst script for gfs2-utils
3
4set -e
5
6case "$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 ;;
17esac
18
19# dh_installdeb will replace this with shell code automatically
20# generated by other debhelper scripts.
21
22#DEBHELPER#
23
24exit 0