summaryrefslogtreecommitdiff
path: root/debian/live-helper.prerm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-03-07 12:15:55 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:17:04 +0100
commitd119eacc45310f869b8e87b52a83ed949b36f568 (patch)
tree0f2aec3feed42fc2c53348edda4ca0744145b371 /debian/live-helper.prerm
parentadfd5f9c2a05b8778604f89c1f51f755e34561dd (diff)
downloadvyos-live-build-d119eacc45310f869b8e87b52a83ed949b36f568.tar.gz
vyos-live-build-d119eacc45310f869b8e87b52a83ed949b36f568.zip
Removing obsolete mechanism of using alternatives for templates, has never been used anyway and it's more suitable to directly specify them in the config tree instead.
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 e30345b1f..000000000
--- 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