summaryrefslogtreecommitdiff
path: root/chicago95/debian/chicago95-theme-plymouth.prerm
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-09-13 18:03:17 +0000
committerB Stack <bgstack15@gmail.com>2019-09-13 18:03:17 +0000
commitd3887a744a54fa1c87078396fbfe294e4b4fdc47 (patch)
treef16a8420d30c5ebd58daa69b04402dda409f50ba /chicago95/debian/chicago95-theme-plymouth.prerm
parentMerge branch 'palemoon-bump' into 'master' (diff)
parentBetter documentation for chicago95 (diff)
downloadstackrpms-d3887a744a54fa1c87078396fbfe294e4b4fdc47.tar.gz
stackrpms-d3887a744a54fa1c87078396fbfe294e4b4fdc47.tar.bz2
stackrpms-d3887a744a54fa1c87078396fbfe294e4b4fdc47.zip
Merge branch 'chicago95-bump' into 'master'
Chicago95 dpkg scripts See merge request bgstack15/stackrpms!86
Diffstat (limited to 'chicago95/debian/chicago95-theme-plymouth.prerm')
-rw-r--r--chicago95/debian/chicago95-theme-plymouth.prerm25
1 files changed, 25 insertions, 0 deletions
diff --git a/chicago95/debian/chicago95-theme-plymouth.prerm b/chicago95/debian/chicago95-theme-plymouth.prerm
new file mode 100644
index 0000000..7ab6565
--- /dev/null
+++ b/chicago95/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
bgstack15