summaryrefslogtreecommitdiff
path: root/debian/live-helper.prerm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/live-helper.prerm')
-rw-r--r--debian/live-helper.prerm23
1 files changed, 0 insertions, 23 deletions
diff --git a/debian/live-helper.prerm b/debian/live-helper.prerm
deleted file mode 100644
index e30345b..0000000
--- a/debian/live-helper.prerm
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- remove|upgrade|deconfigure)
- update-alternatives --remove live-helper_includes /usr/share/live-helper/includes.debian
- update-alternatives --remove live-helper_templates /usr/share/live-helper/templates.debian
- ;;
-
- failed-upgrade)
-
- ;;
-
- *)
- echo "prerm called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0