mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
1.5.9 is the current develop version
This commit is contained in:
parent
0e87d4103a
commit
c93614d541
2 changed files with 5 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue