]> git.proxmox.com Git - ksm-control-daemon.git/blame - debian/postrm
updates for PVE 4.0 (Debian Jessie)
[ksm-control-daemon.git] / debian / postrm
CommitLineData
1642c475
DM
1#!/bin/sh
2#
3# see: dh_installdeb(1)
03e54684 4
03e54684
DM
5set -e
6
1642c475
DM
7# for details, see http://www.debian.org/doc/debian-policy/ or
8# the debian-policy package
9
10case "$1" in
11 purge)
12 ;;
13
14 remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
15 ;;
16
17 *)
18 echo "postrm called with unknown argument \`$1'" >&2
19 exit 1
20 ;;
21esac
22
23# dh_installdeb will replace this with shell code automatically
24# generated by other debhelper scripts.
25
26#DEBHELPER#