]> git.proxmox.com Git - pve-kernel-3.10.0.git/blob - proxmox-ve/postinst
update intel network drivers
[pve-kernel-3.10.0.git] / proxmox-ve / 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 case "$1" in
15 configure)
16 # Configure this package. If the package must prompt the user for
17 # information, do it here.
18
19 # install release key
20 echo -n "installing proxmox release key: "
21 /usr/bin/apt-key add '/usr/share/doc/proxmox-ve-@KERNEL_VER@/proxmox-release@proxmox.com.pubkey' || /bin/true
22
23 # There are three sub-cases:
24 if test "${2+set}" != set; then
25 # We're being installed by an ancient dpkg which doesn't remember
26 # which version was most recently configured, or even whether
27 # there is a most recently configured version.
28 :
29
30 elif test -z "$2" -o "$2" = "<unknown>"; then
31 # The package has not ever been configured on this system, or was
32 # purged since it was last configured.
33 :
34
35 else
36 # Version $2 is the most recently configured version of this
37 # package.
38 :
39
40 fi ;;
41 abort-upgrade)
42 # Back out of an attempt to upgrade this package FROM THIS VERSION
43 # to version $2. Undo the effects of "prerm upgrade $2".
44 :
45
46 ;;
47 abort-remove)
48 if test "$2" != in-favour; then
49 echo "$0: undocumented call to \`postinst $*'" 1>&2
50 exit 0
51 fi
52 # Back out of an attempt to remove this package, which was due to
53 # a conflict with package $3 (version $4). Undo the effects of
54 # "prerm remove in-favour $3 $4".
55 :
56
57 ;;
58 abort-deconfigure)
59 if test "$2" != in-favour -o "$5" != removing; then
60 echo "$0: undocumented call to \`postinst $*'" 1>&2
61 exit 0
62 fi
63 # Back out of an attempt to deconfigure this package, which was
64 # due to package $6 (version $7) which we depend on being removed
65 # to make way for package $3 (version $4). Undo the effects of
66 # "prerm deconfigure in-favour $3 $4 removing $6 $7".
67 :
68
69 ;;
70 *) echo "$0: didn't understand being called with \`$1'" 1>&2
71 exit 0;;
72 esac
73
74 exit 0