3 # Abort if any command returns an error value
9 # remove stale /etc/qemu (files are in /etc/kvm)
10 # file is now in /usr/share/kvm/cpus-x86_64.conf
11 rm -f /etc
/qemu
/target-x86_64.conf
12 if test -d /etc
/qemu
; then rmdir /etc
/qemu
; fi
13 rm -f /etc
/kvm
/target-x86_64.conf
15 # There are three sub-cases:
16 if test "${2+set}" != set; then
17 # We're being installed by an ancient dpkg which doesn't remember
18 # which version was most recently configured, or even whether
19 # there is a most recently configured version.
22 elif test -z "$2" -o "$2" = "<unknown>"; then
23 # The package has not ever been configured on this system, or was
24 # purged since it was last configured.
28 # Version $2 is the most recently configured version of this
34 # Back out of an attempt to upgrade this package FROM THIS VERSION
35 # to version $2. Undo the effects of "prerm upgrade $2".
40 if test "$2" != in-favour
; then
41 echo "$0: undocumented call to \`postinst $*'" 1>&2
44 # Back out of an attempt to remove this package, which was due to
45 # a conflict with package $3 (version $4). Undo the effects of
46 # "prerm remove in-favour $3 $4".
51 if test "$2" != in-favour
-o "$5" != removing
; then
52 echo "$0: undocumented call to \`postinst $*'" 1>&2
55 # Back out of an attempt to deconfigure this package, which was
56 # due to package $6 (version $7) which we depend on being removed
57 # to make way for package $3 (version $4). Undo the effects of
58 # "prerm deconfigure in-favour $3 $4 removing $6 $7".
62 *) echo "$0: didn't understand being called with \`$1'" 1>&2