]> git.proxmox.com Git - pve-manager.git/blob - debian/postinst
af587c739aa7d839506417ffd5de4f1ef9ad5271
[pve-manager.git] / debian / postinst
1 #!/bin/bash
2
3 # Abort if any command returns an error value
4 set -e
5
6 # This script is called as the last step of the installation of the
7 # package. All the package's files are in place, dpkg has already
8 # done its automatic conffile handling, and all the packages we depend
9 # of are already fully installed and configured.
10
11 # The following idempotent stuff doesn't generally need protecting
12 # against being run in the abort-* cases.
13
14 # Use debconf. (installs templates)
15 . /usr/share/debconf/confmodule
16 # all done with debconf here.
17 db_stop
18
19 case "$1" in
20 triggered)
21 # We don't print a status message here, as dpkg already said
22 # "Processing triggers for ...".
23
24 # test if /etc/pve is mounted; else simple exit to avoid
25 # error during updates
26 test -f /etc/pve/local/pve-ssl.pem || exit 0;
27
28 test -e /proxmox_install_mode || invoke-rc.d pvedaemon restart
29 test -e /proxmox_install_mode || invoke-rc.d pvestatd restart
30 test -e /proxmox_install_mode || invoke-rc.d pveproxy restart
31 test -e /proxmox_install_mode || invoke-rc.d spiceproxy restart
32
33 exit 0;;
34
35 configure)
36 # Configure this package. If the package must prompt the user for
37 # information, do it here.
38
39 mkdir /etc/pve 2>/dev/null || true
40
41 # remove old APL dir
42 rm -rf /var/lib/pve-manager/apl-available
43
44 if test ! -e /var/lib/pve-manager/apl-info/download.proxmox.com; then
45 mkdir -p /var/lib/pve-manager/apl-info
46 cp /usr/share/doc/pve-manager/aplinfo.dat /var/lib/pve-manager/apl-info/download.proxmox.com
47 pveam update || true
48 fi
49
50 if test -f /root/.forward; then
51 if ! grep -q '|/usr/bin/pvemailforward' /root/.forward; then
52 echo -e "|/usr/bin/pvemailforward\n$(cat /root/.forward)" >/root/.forward.tmp
53 mv /root/.forward.tmp /root/.forward
54 fi
55 else
56 echo '|/usr/bin/pvemailforward' >/root/.forward
57 fi
58
59 # disable fancy init messages (bad with bootlogd)
60 test -f /etc/lsb-base-logging.sh || echo "FANCYTTY=0" >/etc/lsb-base-logging.sh
61
62 update-rc.d pvedaemon defaults 21 79 >/dev/null
63 update-rc.d pveproxy defaults 21 79 >/dev/null
64 update-rc.d spiceproxy defaults 21 79 >/dev/null
65 update-rc.d pvestatd defaults 21 79 >/dev/null
66 update-rc.d pvebanner start 99 2 3 4 5 . >/dev/null
67 update-rc.d pvenetcommit start 15 S . >/dev/null
68 update-rc.d pve-manager defaults 25 75 >/dev/null
69
70 test -e /proxmox_install_mode || invoke-rc.d pvedaemon restart
71 test -e /proxmox_install_mode || invoke-rc.d pveproxy restart
72 test -e /proxmox_install_mode || invoke-rc.d spiceproxy restart
73 test -e /proxmox_install_mode || invoke-rc.d pvestatd restart
74
75 # rewrite banner
76 test -e /proxmox_install_mode || pvebanner || /bin/true
77
78 #a2ensite pve.conf >/dev/null 2>&1
79
80 # There are three sub-cases:
81 if test "${2+set}" != set; then
82 # We're being installed by an ancient dpkg which doesn't remember
83 # which version was most recently configured, or even whether
84 # there is a most recently configured version.
85 :
86
87 elif test -z "$2" -o "$2" = "<unknown>"; then
88 # The package has not ever been configured on this system, or was
89 # purged since it was last configured.
90 :
91
92 else
93 # Version $2 is the most recently configured version of this
94 # package.
95 :
96
97 fi ;;
98 abort-upgrade)
99 # Back out of an attempt to upgrade this package FROM THIS VERSION
100 # to version $2. Undo the effects of "prerm upgrade $2".
101 :
102
103 ;;
104 abort-remove)
105 if test "$2" != in-favour; then
106 echo "$0: undocumented call to \`postinst $*'" 1>&2
107 exit 0
108 fi
109 # Back out of an attempt to remove this package, which was due to
110 # a conflict with package $3 (version $4). Undo the effects of
111 # "prerm remove in-favour $3 $4".
112 :
113
114 ;;
115 abort-deconfigure)
116 if test "$2" != in-favour -o "$5" != removing; then
117 echo "$0: undocumented call to \`postinst $*'" 1>&2
118 exit 0
119 fi
120 # Back out of an attempt to deconfigure this package, which was
121 # due to package $6 (version $7) which we depend on being removed
122 # to make way for package $3 (version $4). Undo the effects of
123 # "prerm deconfigure in-favour $3 $4 removing $6 $7".
124 :
125
126 ;;
127 *) echo "$0: didn't understand being called with \`$1'" 1>&2
128 exit 0;;
129 esac
130
131 exit 0