summaryrefslogtreecommitdiff
path: root/vdr-vdrmanager/debian/preinst.ex
diff options
context:
space:
mode:
authorlado <herrlado@gmail.com>2013-03-18 00:25:59 +0100
committerlado <herrlado@gmail.com>2013-03-18 00:25:59 +0100
commitaffbb7b027850d488664a05a6e4a33e3b838c19c (patch)
tree8082b93170f109bd976d2cba5eaba47240d90cb6 /vdr-vdrmanager/debian/preinst.ex
parent61c639058ba812c78e1d26d6a7bfffd7840c9acc (diff)
downloadvdr-manager-affbb7b027850d488664a05a6e4a33e3b838c19c.tar.gz
vdr-manager-affbb7b027850d488664a05a6e4a33e3b838c19c.tar.bz2
no debian here
Diffstat (limited to 'vdr-vdrmanager/debian/preinst.ex')
-rw-r--r--vdr-vdrmanager/debian/preinst.ex35
1 files changed, 0 insertions, 35 deletions
diff --git a/vdr-vdrmanager/debian/preinst.ex b/vdr-vdrmanager/debian/preinst.ex
deleted file mode 100644
index 104f32f..0000000
--- a/vdr-vdrmanager/debian/preinst.ex
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# preinst script for vdr-plugin-vdrmanager
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0