diff options
author | B Stack <bgstack15@gmail.com> | 2020-05-09 13:37:49 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-05-09 13:37:49 -0400 |
commit | 9e653719ee2cbce952aa68181df2c1fc927db28d (patch) | |
tree | 462ec7d2d96c1ce774bcc60f93bb2e43e5cfe6f1 /Devuan-Unstable/debian/chicago95-theme-plymouth.prerm | |
parent | add readme files (diff) | |
download | chicago95-packages-9e653719ee2cbce952aa68181df2c1fc927db28d.tar.gz chicago95-packages-9e653719ee2cbce952aa68181df2c1fc927db28d.tar.bz2 chicago95-packages-9e653719ee2cbce952aa68181df2c1fc927db28d.zip |
add devuan-unstable original dir
Diffstat (limited to 'Devuan-Unstable/debian/chicago95-theme-plymouth.prerm')
-rw-r--r-- | Devuan-Unstable/debian/chicago95-theme-plymouth.prerm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Devuan-Unstable/debian/chicago95-theme-plymouth.prerm b/Devuan-Unstable/debian/chicago95-theme-plymouth.prerm new file mode 100644 index 0000000..7ab6565 --- /dev/null +++ b/Devuan-Unstable/debian/chicago95-theme-plymouth.prerm @@ -0,0 +1,25 @@ +#!/bin/sh +set -e + +case "$1" in + remove|deconfigure) + update-alternatives --remove default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth + update-alternatives --remove default.plymouth /usr/share/plymouth/themes/RetroTux/RetroTux.plymouth + ;; + + upgrade) + ;; + + failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 |