File: postrm.in

package info (click to toggle)
grub2 2.02~beta3-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 56,240 kB
  • ctags: 67,122
  • sloc: ansic: 378,393; asm: 16,268; sh: 13,167; cpp: 1,991; python: 1,458; makefile: 1,407; sed: 423; lex: 393; yacc: 267; awk: 75; lisp: 50; perl: 31
file content (65 lines) | stat: -rw-r--r-- 1,728 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
set -e

case "$1" in
  purge)
    rm -f /etc/default/grub

    if which ucf >/dev/null ; then
	ucf --purge /etc/default/grub
    fi
    if which ucfr >/dev/null ; then
	ucfr --purge @PACKAGE@ /etc/default/grub || true
    fi

    case @PACKAGE@ in
      grub-pc)
        # debconf could have been purged
        if [ -e /usr/share/debconf/confmodule ] ; then
          . /usr/share/debconf/confmodule
        fi

        db_input high grub-pc/postrm_purge_boot_grub || true
        db_go || true
        db_get grub-pc/postrm_purge_boot_grub || true
        if [ "$RET" = "true" ] ; then
          rm -f /boot/grub/grub.cfg \
                /boot/grub/ascii.pf2 \
                /boot/grub/unicode.pf2 \
                /boot/grub/moreblue-orbit-grub.png \
                /boot/grub/*.mod \
                /boot/grub/*.lst \
                /boot/grub/*.img \
                /boot/grub/efiemu32.o \
                /boot/grub/efiemu64.o \
                /boot/grub/device.map \
                /boot/grub/grubenv \
                /boot/grub/installed-version \
                /boot/grub/.background_cache.jpeg \
                /boot/grub/.background_cache.png \
                /boot/grub/.background_cache.tga || true
          rm -rf /boot/grub/locale
          rmdir --ignore-fail-on-non-empty /boot/grub || true
        fi
      ;;

      grub-efi-ia32|grub-efi-amd64)
        rm -f /boot/grub/unicode.pf2
      ;;
    esac

  ;;
  remove|upgrade|failed-upgrade|abort-upgrade|abort-install)
  ;;
  *)
    echo "postrm called with unknown argument \`$1'" >&2
    exit 1
  ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0