*** empty log message ***
[tinc] / debian / postinst
1 #! /bin/sh
2 # postinst script for tinc
3 #
4 # $Id: postinst,v 1.1 2000/05/16 07:56:05 zarq Exp $
5 #
6 # see: dh_installdeb(1)
7
8 set -e
9
10 # summary of how this script can be called:
11 #        * <postinst> `configure' <most-recently-configured-version>
12 #        * <old-postinst> `abort-upgrade' <new version>
13 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
14 #          <new-version>
15 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
16 #          <failed-install-package> <version> `removing'
17 #          <conflicting-package> <version>
18 # for details, see /usr/doc/packaging-manual/
19 #
20 # quoting from the policy:
21 #     Any necessary prompting should almost always be confined to the
22 #     post-installation script, and should be protected with a conditional
23 #     so that unnecessary prompting doesn't happen if a package's
24 #     installation fails and the `postinst' is called with `abort-upgrade',
25 #     `abort-remove' or `abort-deconfigure'.
26
27 case "$1" in
28     configure)
29
30         cd /dev && ./MAKEDEV netlink || true
31
32     ;;
33
34     abort-upgrade|abort-remove|abort-deconfigure)
35
36     ;;
37
38     *)
39         echo "postinst called with unknown argument \`$1'" >&2
40         exit 0
41     ;;
42 esac
43
44 # dh_installdeb will replace this with shell code automatically
45 # generated by other debhelper scripts.
46
47 #DEBHELPER#
48
49 exit 0
50
51