File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 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
54Version 2014.09.09:
65 * Distro Support Fixes:
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments