]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - zephyr/debian/zephyr-clients.postinst
resurrect zephyr packaging
[1ts-debian.git] / zephyr / debian / zephyr-clients.postinst
1 #! /bin/sh
2 # postinst script for zephyr
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # summary of how this script can be called:
9 #        * <postinst> `configure' <most-recently-configured-version>
10 #        * <old-postinst> `abort-upgrade' <new version>
11 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12 #          <new-version>
13 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
14 #          <failed-install-package> <version> `removing'
15 #          <conflicting-package> <version>
16 # for details, see /usr/share/doc/packaging-manual/
17 #
18 # quoting from the policy:
19 #     Any necessary prompting should almost always be confined to the
20 #     post-installation script, and should be protected with a conditional
21 #     so that unnecessary prompting doesn't happen if a package's
22 #     installation fails and the `postinst' is called with `abort-upgrade',
23 #     `abort-remove' or `abort-deconfigure'.
24
25 case "$1" in
26     configure)
27
28         . /usr/share/debconf/confmodule
29         db_version 2.0
30
31         db_set zephyr-clients/read_conf true
32
33         if test -f /etc/zephyr/zephyr.conf
34         then
35                 if test ! -f /etc/default/zephyr-clients
36                 then
37                         mv /etc/zephyr/zephyr.conf /etc/default/zephyr-clients
38                 fi
39         fi
40
41         # if /etc/default/zephyr-clients already exists and has a zhm_args
42         # line, the config script should have sucked it into debconf
43         db_get zephyr-clients/servers || true
44
45         tmpfile=/etc/default/zephyr-client.dpkg-new
46         if test -f /etc/default/zephyr-clients
47         then
48                 grep -v ^zhm_args /etc/default/zephyr-clients > $tmpfile || true
49         else
50                 cat > $tmpfile << EOF
51 # This file is automatically rewritten by the zephyr-clients post-install
52 # script.  So treat it right.
53 EOF
54         fi
55         echo zhm_args=\"${RET}\" >> $tmpfile
56         cat $tmpfile > /etc/default/zephyr-clients
57         rm $tmpfile
58     ;;
59
60     abort-upgrade|abort-remove|abort-deconfigure)
61
62     ;;
63
64     *)
65         echo "postinst called with unknown argument \`$1'" >&2
66         exit 0
67     ;;
68 esac
69
70 if [ -x "/etc/init.d/zhm" ]; then
71         # this script does not necessarily fail if these do
72         if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
73                 invoke-rc.d zhm restart
74         else
75                 /etc/init.d/zhm restart
76         fi
77 fi
78
79 # dh_installdeb will replace this with shell code automatically
80 # generated by other debhelper scripts.
81
82 #DEBHELPER#
83
84 exit 0