]> git.proxmox.com Git - ksm-control-daemon.git/blob - debian/postinst
updates for PVE 4.0 (Debian Jessie)
[ksm-control-daemon.git] / debian / postinst
1 #! /bin/sh
2
3 # Abort if any command returns an error value
4 set -e
5
6 # This script is called as the last step of the installation of the
7 # package. All the package's files are in place, dpkg has already
8 # done its automatic conffile handling, and all the packages we depend
9 # of are already fully installed and configured.
10
11 # The following idempotent stuff doesn't generally need protecting
12 # against being run in the abort-* cases.
13
14
15 case "$1" in
16 configure)
17 ;;
18
19 abort-upgrade|abort-remove|abort-deconfigure)
20 ;;
21
22 *)
23 echo "$0: didn't understand being called with \`$1'" 1>&2
24 exit 1
25
26 ;;
27 esac
28
29 # dh_installdeb will replace this with shell code automatically
30 # generated by other debhelper scripts.
31
32 #DEBHELPER#
33
34 exit 0