Add non-LTS support for Ubuntu 17.04

This commit is contained in:
rallytime 2017-04-19 17:00:07 -06:00
parent 2d5fb4a58d
commit 50f7132222

View file

@ -1276,6 +1276,11 @@ __ubuntu_codename_translation() {
DISTRO_CODENAME="yakkety"
fi
;;
"17")
if [ "$_april" ]; then
DISTRO_CODENAME="zesty"
fi
;;
*)
DISTRO_CODENAME="trusty"
;;
@ -2454,10 +2459,10 @@ install_ubuntu_stable_deps() {
# Versions starting with 2015.5.6, 2015.8.1 and 2016.3.0 are hosted at repo.saltstack.com
if [ "$(echo "$STABLE_REV" | egrep '^(2015\.5|2015\.8|2016\.3|2016\.11|latest|archive\/)')" != "" ]; then
# Workaround for latest non-LTS ubuntu
if [ "$DISTRO_VERSION" = "16.10" ]; then
if [ "$DISTRO_VERSION" = "16.10" ] || [ "$DISTRO_VERSION" = "17.04" ]; then
echowarn "Non-LTS Ubuntu detected, but stable packages requested. Trying packages from latest LTS release. You may experience problems."
UBUNTU_VERSION=16.04
UBUNTU_CODENAME=xenial
UBUNTU_CODENAME="xenial"
else
UBUNTU_VERSION=$DISTRO_VERSION
UBUNTU_CODENAME=$DISTRO_CODENAME