2 # postinst script for iodine
4 # see: dh_installdeb(1)
8 . /usr/share/debconf/confmodule
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>
15 # * <postinst> `abort-remove'
16 # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
17 # <failed-install-package> <version> `removing'
18 # <conflicting-package> <version>
19 # for details, see http://www.debian.org/doc/debian-policy/ or
20 # the debian-policy package
25 # we need a tun device
26 if [ ! -c /dev/net/tun ] && [ -x /dev/MAKEDEV ] ; then
27 echo "Creating device /dev/net/tun ..."
31 # and we want a special user
32 adduser --quiet --system --home /var/run/iodine iodine
33 # generate /etc/default/iodine
34 db_get iodine/start_daemon
36 db_get iodine/daemon_options
38 db_get iodine/daemon_password
40 cat <<EOF > /etc/default/iodine
41 # Default settings for iodine. This file is sourced from
43 START_IODINED="$START_IODINED"
44 IODINED_ARGS="$IODINED_ARGS"
45 IODINED_PASSWORD="$IODINED_PASSWORD"
47 [ -e /etc/default/iodine ] && chmod 600 /etc/default/iodine
50 abort-upgrade|abort-remove|abort-deconfigure)
54 echo "postinst called with unknown argument \`$1'" >&2
59 # tell debconf we are done. otherwise, it hangs waiting for the daemon.
62 # dh_installdeb will replace this with shell code automatically
63 # generated by other debhelper scripts.