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