source: trunk/packages/xen-common/xen-common/debian/xen-utils-common.postrm @ 42

Last change on this file since 42 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 402 bytes
Line 
1#!/bin/sh
2
3set -e
4
5case "$1" in
6purge)
7        # Remove udev rules symlink
8        L="/etc/udev/rules.d/z60_xen-backend.rules"
9        [ -L "$L" ] && rm "$L"
10
11        XENSTORED_DIR="/var/lib/xenstored"
12        [ -d "${XENSTORED_DIR}" ] && rm -r "${XENSTORED_DIR}"
13        ;;
14
15remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
16        ;;
17
18*)
19        echo "postrm called with unknown argument \`$1'" >&2
20        exit 
21        ;;
22esac
23
24#DEBHELPER#
25
26exit 0
Note: See TracBrowser for help on using the repository browser.