summaryrefslogtreecommitdiffstats
path: root/debian/postinst.ex
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-17 13:00:12 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-17 13:00:12 +0000
commit78c7237b805620d0b8275377fefa9b3ba8ff1954 (patch)
treeada1a5165863d41995360edd0b7b9764a483d717 /debian/postinst.ex
parent46632c536288d4159d7c78cab921dc2ab2d08dc4 (diff)
downloadpython-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/postinst.ex')
-rw-r--r--debian/postinst.ex41
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/postinst.ex b/debian/postinst.ex
new file mode 100644
index 0000000..3eb9e08
--- /dev/null
+++ b/debian/postinst.ex
@@ -0,0 +1,41 @@
+#!/bin/sh
+# postinst script for dmidecode
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+# * <postinst> `configure' <most-recently-configured-version>
+# * <old-postinst> `abort-upgrade' <new version>
+# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+# <new-version>
+# * <postinst> `abort-remove'
+# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+# <failed-install-package> <version> `removing'
+# <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+ configure)
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst 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
+
+