summaryrefslogtreecommitdiffstats
path: root/debian/xebian-artwork.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/xebian-artwork.postinst')
-rwxr-xr-xdebian/xebian-artwork.postinst23
1 files changed, 0 insertions, 23 deletions
diff --git a/debian/xebian-artwork.postinst b/debian/xebian-artwork.postinst
deleted file mode 100755
index cd780f5..0000000
--- a/debian/xebian-artwork.postinst
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "$1" in
- configure)
- # Xebian prefers legacy newt colors over Aubergine by default
- if update-alternatives --query newt-palette | grep -qs "Status: auto"; then
- update-alternatives --set newt-palette /etc/newt/palette.original
- fi
- ;;
-
- abort-upgrade|abort-deconfigure|abort-remove)
- ;;
-
- *)
- echo "$0 called with unknown argument \`$1'" 1>&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-exit 0