~ubuntu-xen/ubuntu-xen/branch

« back to all changes in this revision

Viewing changes to xen-hypervisor-3.1-i386-pae.postrm

  • Committer: Chuck Short
  • Date: 2007-06-21 14:29:51 UTC
  • Revision ID: zulcss@ubuntu.com-20070621142951-yw93wpxcv5y616fp
added pae crack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
case "$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
    ;;
 
19
esac
 
20
 
 
21
#DEBHELPER#
 
22
 
 
23
exit 0