]> git.proxmox.com Git - corosync-pve.git/blame - debian/corosync-pve.postrm
imported from svn 'corosync/trunk'
[corosync-pve.git] / debian / corosync-pve.postrm
CommitLineData
930e051d
DM
1#!/bin/sh
2# postrm script for corosync
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# for details, see http://www.debian.org/doc/debian-policy/ or
9# the debian-policy package
10
11
12case "$1" in
13 purge)
14 rm -rf /var/lib/corosync
15 ;;
16
17 remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
18 ;;
19
20 *)
21 echo "postrm called with unknown argument \`$1'" >&2
22 exit 1
23 ;;
24esac
25
26# dh_installdeb will replace this with shell code automatically
27# generated by other debhelper scripts.
28
29#DEBHELPER#
30
31exit 0
32
33