summaryrefslogtreecommitdiffstats
path: root/debian/preinst.ex
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-19 02:23:32 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-19 02:23:32 +0000
commite620d0a9d88875c425741ad2d40579e61cdd15b0 (patch)
treecbf2594af347cfdcc83b370f999d80de3f2e2797 /debian/preinst.ex
parentc19f68cb27021c0fd5e0ad1962ff9547bd616e23 (diff)
downloadpython-dmidecode-e620d0a9d88875c425741ad2d40579e61cdd15b0.tar.gz
python-dmidecode-e620d0a9d88875c425741ad2d40579e61cdd15b0.tar.xz
python-dmidecode-e620d0a9d88875c425741ad2d40579e61cdd15b0.zip
Removed junk and doing more debianizing - WIP.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@118 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'debian/preinst.ex')
-rw-r--r--debian/preinst.ex37
1 files changed, 0 insertions, 37 deletions
diff --git a/debian/preinst.ex b/debian/preinst.ex
deleted file mode 100644
index 7d5a849..0000000
--- a/debian/preinst.ex
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-# preinst script for dmidecode
-#
-# 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
-
-