postinst: remove outdated calls

any system upgrading to 7.x was either installed with >= 6.4 in the
first place, or upgraded to >= 6.4 and thus fixed those issues already.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2021-06-22 12:16:57 +02:00 committed by Thomas Lamprecht
parent 5fb7a28a78
commit bf51be9965
2 changed files with 0 additions and 12 deletions

2
debian/maintscript vendored
View File

@ -1,2 +0,0 @@
# FIXME: remove in 7.0
rm_conffile /etc/apt/apt.conf.d/75pveconf 6.0-0+3 pve-manager

10
debian/postinst vendored
View File

@ -122,13 +122,6 @@ case "$1" in
fi
done
fi
# TODO: remove once PVE 7.0 is released
if test -n "$2"; then
if dpkg --compare-versions "$2" 'lt' '6.0-11'; then
newaliases || true
fi
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
@ -138,7 +131,4 @@ case "$1" in
exit 0;;
esac
# FIXME: remove in 7.0
dpkg-maintscript-helper rm_conffile /etc/apt/apt.conf.d/75pveconf 6.0-0\+3 pve-manager -- "$@"
exit 0