diff options
| author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-12-17 13:00:12 +0000 |
|---|---|---|
| committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-12-17 13:00:12 +0000 |
| commit | 78c7237b805620d0b8275377fefa9b3ba8ff1954 (patch) | |
| tree | ada1a5165863d41995360edd0b7b9764a483d717 /debian/preinst.ex | |
| parent | 46632c536288d4159d7c78cab921dc2ab2d08dc4 (diff) | |
| download | python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.tar.gz python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.tar.xz python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.zip | |
And the debian subfolder itself...
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@111 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'debian/preinst.ex')
| -rw-r--r-- | debian/preinst.ex | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/preinst.ex b/debian/preinst.ex new file mode 100644 index 0000000..7d5a849 --- /dev/null +++ b/debian/preinst.ex @@ -0,0 +1,37 @@ +#!/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 + + |
