Skip to content

Commit bf9364a

Browse files
committed
Merge branch 'develop' into stable for v2014.09.25
2 parents b549ca9 + e6f9aec commit bf9364a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

ChangeLog

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
Version 2014.09.24:
2-
* Fixed salt tag version matching to also accept, for example, v2014.7. #464
3-
* Fix the EPEL 7 URL since epel-release is now 7.2
1+
Version 2014.09.25:
2+
* Properly detect Amazon AMI's >= 2014.9. #468
43

54
Version 2014.09.09:
65
* Distro Support Fixes:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ To install a specific branch from a git fork:
107107

108108
.. code:: console
109109
110-
curl -o install_salt.sh.sh -L https://bootstrap.saltstack.com
111-
sudo sh install_salt.sh.sh -g https://github.com/myuser/salt.git git mybranch
110+
curl -o install_salt.sh -L https://bootstrap.saltstack.com
111+
sudo sh install_salt.sh -g https://github.com/myuser/salt.git git mybranch
112112
113113
114114
Installing via an Insecure One-Liner

bootstrap-salt.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,10 @@ __gather_linux_system_info() {
774774
rv="$(__unquote_string "$(grep '^VERSION_ID=' /etc/os-release | sed -e 's/^VERSION_ID=\(.*\)$/\1/g')")"
775775
[ "${rv}" != "" ] && v=$(__parse_version_string "$rv") || v=""
776776
case $(echo "${nn}" | tr '[:upper:]' '[:lower:]') in
777+
amzn )
778+
# Amazon AMI's after 2014.9 match here
779+
n="Amazon Linux AMI"
780+
;;
777781
arch )
778782
n="Arch Linux"
779783
v="" # Arch Linux does not provide a version.

0 commit comments

Comments
 (0)