]> git.proxmox.com Git - pve-manager.git/blob - debian/postinst
f2176110eed6fd107239a35fb88c38384de846a1
[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 apache2 restart
31
32 exit 0;;
33
34 configure)
35 # Configure this package. If the package must prompt the user for
36 # information, do it here.
37
38 mkdir /etc/pve 2>/dev/null || true
39
40 # remove old APL dir
41 rm -rf /var/lib/pve-manager/apl-available
42
43 if test ! -e /var/lib/pve-manager/apl-info/download.proxmox.com; then
44 mkdir -p /var/lib/pve-manager/apl-info
45 cp /usr/share/doc/pve-manager/aplinfo.dat /var/lib/pve-manager/apl-info/download.proxmox.com
46 pveam update || true
47 fi
48
49 if test -f /root/.forward; then
50 if ! grep -q '|/usr/bin/pvemailforward' /root/.forward; then
51 echo -e "|/usr/bin/pvemailforward\n$(cat /root/.forward)" >/root/.forward.tmp
52 mv /root/.forward.tmp /root/.forward
53 fi
54 else
55 echo '|/usr/bin/pvemailforward' >/root/.forward
56 fi
57
58 update-rc.d pvedaemon defaults 21 79 >/dev/null
59 update-rc.d pvestatd defaults 21 79 >/dev/null
60 update-rc.d pvebanner start 99 2 3 4 5 . >/dev/null
61 update-rc.d pvenetcommit start 15 S . >/dev/null
62 update-rc.d pve-manager defaults 25 75 >/dev/null
63
64 test -e /proxmox_install_mode || invoke-rc.d pvedaemon restart
65 test -e /proxmox_install_mode || invoke-rc.d pvestatd restart
66
67 a2enmod perl >/dev/null 2>&1
68 a2enmod ssl >/dev/null 2>&1
69 a2enmod rewrite >/dev/null 2>&1
70 a2enmod proxy >/dev/null 2>&1
71
72 a2dissite default >/dev/null 2>&1 || true
73 a2ensite pve.conf >/dev/null 2>&1
74
75 test -e /proxmox_install_mode || invoke-rc.d apache2 restart
76
77 # There are three sub-cases:
78 if test "${2+set}" != set; then
79 # We're being installed by an ancient dpkg which doesn't remember
80 # which version was most recently configured, or even whether
81 # there is a most recently configured version.
82 :
83
84 elif test -z "$2" -o "$2" = "<unknown>"; then
85 # The package has not ever been configured on this system, or was
86 # purged since it was last configured.
87 :
88
89 else
90 # Version $2 is the most recently configured version of this
91 # package.
92 :
93
94 fi ;;
95 abort-upgrade)
96 # Back out of an attempt to upgrade this package FROM THIS VERSION
97 # to version $2. Undo the effects of "prerm upgrade $2".
98 :
99
100 ;;
101 abort-remove)
102 if test "$2" != in-favour; then
103 echo "$0: undocumented call to \`postinst $*'" 1>&2
104 exit 0
105 fi
106 # Back out of an attempt to remove this package, which was due to
107 # a conflict with package $3 (version $4). Undo the effects of
108 # "prerm remove in-favour $3 $4".
109 :
110
111 ;;
112 abort-deconfigure)
113 if test "$2" != in-favour -o "$5" != removing; then
114 echo "$0: undocumented call to \`postinst $*'" 1>&2
115 exit 0
116 fi
117 # Back out of an attempt to deconfigure this package, which was
118 # due to package $6 (version $7) which we depend on being removed
119 # to make way for package $3 (version $4). Undo the effects of
120 # "prerm deconfigure in-favour $3 $4 removing $6 $7".
121 :
122
123 ;;
124 *) echo "$0: didn't understand being called with \`$1'" 1>&2
125 exit 0;;
126 esac
127
128 exit 0