source: trunk/packages/xen-3.1/xen-3.1/debian/templates/.svn/text-base/xen-hypervisor.postrm.in.svn-base @ 34

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

Add xen and xen-common

File size: 363 bytes
Line 
1#!/bin/bash
2
3set -e
4
5case "$1" in
6    remove)
7        if command -v update-grub > /dev/null && [ -d /boot/grub ]; then
8            update-grub || :
9        fi
10    ;;
11
12    purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
13    ;;
14
15    *)
16        echo "postrm called with unknown argument \`$1'" >&2
17        exit 1
18    ;;
19esac
20
21#DEBHELPER#
22
23exit 0
Note: See TracBrowser for help on using the repository browser.