From ad1eb2590983634cb5549be1fbe1f2bae8a24d01 Mon Sep 17 00:00:00 2001 From: B Stack Date: Thu, 14 May 2020 11:38:50 -0400 Subject: remove directory for each dpkg distro The Open Build Service uses the one debian/ and .dsc contents to build for all dpkg targets. --- debian/chicago95-theme-plymouth.prerm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 debian/chicago95-theme-plymouth.prerm (limited to 'debian/chicago95-theme-plymouth.prerm') diff --git a/debian/chicago95-theme-plymouth.prerm b/debian/chicago95-theme-plymouth.prerm new file mode 100644 index 0000000..7ab6565 --- /dev/null +++ b/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 -- cgit