From 0761eed64c4d6d2b8e9fa6a335ccdca8ea4b95db Mon Sep 17 00:00:00 2001 From: Ivo Timmermans Date: Tue, 16 May 2000 07:56:05 +0000 Subject: [PATCH] *** empty log message *** --- debian/postinst | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 debian/postinst diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 00000000..5bd19550 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,51 @@ +#! /bin/sh +# postinst script for tinc +# +# $Id: postinst,v 1.1 2000/05/16 07:56:05 zarq Exp $ +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + cd /dev && ./MAKEDEV netlink || true + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + -- 2.20.1