diff options
Diffstat (limited to 'debian/live-build.preinst')
-rw-r--r-- | debian/live-build.preinst | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/live-build.preinst b/debian/live-build.preinst deleted file mode 100644 index 1d53a0a0f..000000000 --- a/debian/live-build.preinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - upgrade) - if [ -h /usr/share/live/build/includes/squeeze ] - then - rm -f /usr/share/live/build/includes/squeeze - fi - ;; - - install|abort-upgrade) - - ;; - - *) - echo "preinst called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 |