~burhanilinux/+junk/plymouth

« back to all changes in this revision

Viewing changes to debian/plymouth-x11.postrm

  • Committer: Juzer Dana
  • Date: 2024-01-14 13:03:08 UTC
  • Revision ID: juzerdana@gmail.com-20240114130308-urizjbjhjqmenga6
New Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
case "${1}" in
 
6
        remove)
 
7
                if which update-initramfs >/dev/null 2>&1; then
 
8
                        update-initramfs -u
 
9
                fi
 
10
                ;;
 
11
 
 
12
        purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
13
 
 
14
                ;;
 
15
 
 
16
        *)
 
17
                echo "postrm called with unknown argument \`${1}'" >&2
 
18
                exit 1
 
19
                ;;
 
20
esac
 
21
 
 
22
#DEBHELPER#
 
23
 
 
24
exit 0