1.5.9 is the current develop version

This commit is contained in:
Pedro Algarvio 2013-09-27 23:26:21 +01:00
parent 0e87d4103a
commit c93614d541
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
Version 1.5.9:
Version 1.5.8:
* Fixed an Ubuntu regression. `add-apt-repository` is only available on
`software-properties-common` after 12.10, inclusive. Thanks Diego Woitasen(diegows)

View file

@ -17,7 +17,7 @@
# CREATED: 10/15/2012 09:49:37 PM WEST
#===============================================================================
set -o nounset # Treat unset variables as an error
__ScriptVersion="1.5.8"
__ScriptVersion="1.5.9"
__ScriptName="bootstrap-salt.sh"
#===============================================================================
@ -1251,7 +1251,7 @@ __enable_universe_repository() {
install_ubuntu_deps() {
apt-get update
if [ $DISTRO_MAJOR_VERSION -gt 12 ] || [ $DISTRO_MAJOR_VERSION -eq 12 && $DISTRO_MINOR_VERSION -eq 10 ]; then
# Above Ubuntu 11.10 add-apt-repository is in a different package
# Above Ubuntu 12.04 add-apt-repository is in a different package
__apt_get_install_noinput software-properties-common || return 1
else
__apt_get_install_noinput python-software-properties || return 1