diff options
Diffstat (limited to 'debian/live-helper.postinst')
-rw-r--r-- | debian/live-helper.postinst | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/debian/live-helper.postinst b/debian/live-helper.postinst deleted file mode 100644 index 9137a2c..0000000 --- a/debian/live-helper.postinst +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - configure) - update-alternatives --install /usr/share/live-helper/templates \ - live-helper_templates \ - /usr/share/live-helper/templates.debian 100 - - update-alternatives --install /usr/share/live-helper/includes \ - live-helper_includes \ - /usr/share/live-helper/includes.debian 100 - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 |