]> git.proxmox.com Git - ksm-control-daemon.git/blame - debian/postinst
updates for PVE 4.0 (Debian Jessie)
[ksm-control-daemon.git] / debian / postinst
CommitLineData
03e54684
DM
1#! /bin/sh
2
3# Abort if any command returns an error value
4set -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
15case "$1" in
1642c475 16 configure)
03e54684 17 ;;
03e54684 18
1642c475 19 abort-upgrade|abort-remove|abort-deconfigure)
03e54684 20 ;;
1642c475
DM
21
22 *)
23 echo "$0: didn't understand being called with \`$1'" 1>&2
24 exit 1
03e54684
DM
25
26 ;;
03e54684
DM
27esac
28
1642c475
DM
29# dh_installdeb will replace this with shell code automatically
30# generated by other debhelper scripts.
31
32#DEBHELPER#
03e54684
DM
33
34exit 0