From e79d2c4d4a5117a1f6590f302feab7592e3433b2 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 20 May 2019 17:52:24 +0100 Subject: [PATCH 01/13] Add the latest release sha256sum to the README --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 9796746..ce512eb 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,7 @@ sum** of the downloaded ``bootstrap-salt.sh`` file. The SHA256 sum of the ``bootstrap-salt.sh`` file, per release, is: +- 2019.05.20: ``46fb5e4b7815efafd69fd703f033fe86e7b584b6770f7e0b936995bcae1cedd8`` - 2019.02.27: ``23728e4b5e54f564062070e3be53c5602b55c24c9a76671968abbf3d609258cb`` - 2019.01.08: ``ab7f29b75711da4bb79aff98d46654f910d569ebe3e908753a3c5119017bb163`` - 2018.08.15: ``6d414a39439a7335af1b78203f9d37e11c972b3c49c519742c6405e2944c6c4b`` From d93d03d602c5a96cf20a1eaa925bbef0149aae46 Mon Sep 17 00:00:00 2001 From: Zahiar Ahmed Date: Fri, 21 Jun 2019 00:21:39 +0100 Subject: [PATCH 02/13] Fix possible typo with `gnupg-curl` vs `gnupg curl` Installing just `gnupg-curl` causes this issue: ``` Setting up ca-certificates (20170717~16.04.2) ... Setting up krb5-locales (1.13.2+dfsg-5ubuntu2.1) ... Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Setting up gnupg-curl (1.4.20-1ubuntu3.3) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for ca-certificates (20170717~16.04.2) ... Updating certificates in /etc/ssl/certs... 148 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. * ERROR: Failed to run install_ubuntu_stable_deps()!!! * DEBUG: Removing the logging pipe /tmp/bootstrap-salt.logpipe * DEBUG: Removing the temporary apt error file /tmp/apt_error.n3jI ERROR: Service 'ubuntu-16-tester' failed to build: The command '/bin/sh -c /tmp/bootstrap-salt.sh -X -d -D' returned a non-zero code: 1 ``` Where as installing both `gnupg` and `curl` ensures `install_ubuntu_stable_deps` runs correctly, as a sub-dependency of `curl` looks to be missing. ``` Setting up ca-certificates (20170717~16.04.2) ... Setting up krb5-locales (1.13.2+dfsg-5ubuntu2.1) ... Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Setting up curl (7.47.0-1ubuntu2.13) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for ca-certificates (20170717~16.04.2) ... Updating certificates in /etc/ssl/certs... 148 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. OK ``` I suspect this is a typo, because looking at the code line above, `__PACKAGES="${__PACKAGES} gnupg dirmngr"`, that installs two packages. --- bootstrap-salt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index edc2e92..b74246b 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2654,7 +2654,7 @@ __install_saltstack_ubuntu_repository() { if [ "$DISTRO_MAJOR_VERSION" -gt 16 ]; then __PACKAGES="${__PACKAGES} gnupg dirmngr" else - __PACKAGES="${__PACKAGES} gnupg-curl" + __PACKAGES="${__PACKAGES} gnupg curl" fi # Make sure https transport is available @@ -3055,7 +3055,7 @@ __install_saltstack_debian_repository() { if [ "$DISTRO_MAJOR_VERSION" -ge 9 ]; then __PACKAGES="${__PACKAGES} gnupg2 dirmngr" else - __PACKAGES="${__PACKAGES} gnupg-curl" + __PACKAGES="${__PACKAGES} gnupg2 curl" fi # Make sure https transport is available From 6f5a696ad1a5074f7e660540aff090a932c06ac2 Mon Sep 17 00:00:00 2001 From: N Date: Sun, 30 Jun 2019 15:43:44 +0100 Subject: [PATCH 03/13] fix(python): install python3 packages if requested --- bootstrap-salt.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index edc2e92..82b6f05 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2698,6 +2698,12 @@ install_ubuntu_deps() { __PACKAGES="upstart" fi + if [ -n "$_PY_EXE" ] && [ "$_PY_MAJOR_VERSION" -eq 3 ]; then + PY_PKG_VER=3 + else + PY_PKG_VER="" + fi + if [ "$DISTRO_MAJOR_VERSION" -ge 16 ] && [ -z "$_PY_EXE" ]; then __PACKAGES="${__PACKAGES} python2.7" fi @@ -2706,13 +2712,13 @@ install_ubuntu_deps() { __PACKAGES="${__PACKAGES} python-virtualenv" fi # Need python-apt for managing packages via Salt - __PACKAGES="${__PACKAGES} python-apt" + __PACKAGES="${__PACKAGES} python${PY_PKG_VER}-apt" # requests is still used by many salt modules - __PACKAGES="${__PACKAGES} python-requests" + __PACKAGES="${__PACKAGES} python${PY_PKG_VER}-requests" # YAML module is used for generating custom master/minion configs - __PACKAGES="${__PACKAGES} python-yaml" + __PACKAGES="${__PACKAGES} python${PY_PKG_VER}-yaml" # Additionally install procps and pciutils which allows for Docker bootstraps. See 366#issuecomment-39666813 __PACKAGES="${__PACKAGES} procps pciutils" From e49861a6d3a03850c6d812e6c4126dcf36ac898f Mon Sep 17 00:00:00 2001 From: Zahiar Ahmed Date: Mon, 22 Jul 2019 22:45:56 +0100 Subject: [PATCH 04/13] Update downloader to just install `wget` This is the only package required to down they keys and also, there's no need to include `gnupg` package explicitly as its required by the distribution anyway. --- bootstrap-salt.sh | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index b74246b..f7ca142 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2648,14 +2648,8 @@ __install_saltstack_ubuntu_repository() { UBUNTU_CODENAME=${DISTRO_CODENAME} fi - __PACKAGES='' - # Install downloader backend for GPG keys fetching - if [ "$DISTRO_MAJOR_VERSION" -gt 16 ]; then - __PACKAGES="${__PACKAGES} gnupg dirmngr" - else - __PACKAGES="${__PACKAGES} gnupg curl" - fi + __PACKAGES='wget' # Make sure https transport is available if [ "$HTTP_VAL" = "https" ] ; then @@ -3049,14 +3043,8 @@ __install_saltstack_debian_repository() { __PY_VERSION_REPO="py3" fi - __PACKAGES='' - # Install downloader backend for GPG keys fetching - if [ "$DISTRO_MAJOR_VERSION" -ge 9 ]; then - __PACKAGES="${__PACKAGES} gnupg2 dirmngr" - else - __PACKAGES="${__PACKAGES} gnupg2 curl" - fi + __PACKAGES='wget' # Make sure https transport is available if [ "$HTTP_VAL" = "https" ] ; then From 053ae47984459099a656e38a20944a0211543585 Mon Sep 17 00:00:00 2001 From: Zahiar Ahmed Date: Mon, 22 Jul 2019 23:39:31 +0100 Subject: [PATCH 05/13] Install required `gnupg` package for later Debian/Ubuntu distros Debian 9+ & Ubuntu 18+ do not appear to install an `gnupg` or equivalent package by default, therefore we need to install it instead, as it is required for importing the GPG keys. --- bootstrap-salt.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index f7ca142..7720eda 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2651,6 +2651,11 @@ __install_saltstack_ubuntu_repository() { # Install downloader backend for GPG keys fetching __PACKAGES='wget' + # Required as it is not installed by default on Ubuntu 18+ + if [ "$DISTRO_MAJOR_VERSION" -ge 18 ]; then + __PACKAGES="${__PACKAGES} gnupg" + fi + # Make sure https transport is available if [ "$HTTP_VAL" = "https" ] ; then __PACKAGES="${__PACKAGES} apt-transport-https ca-certificates" @@ -3046,6 +3051,11 @@ __install_saltstack_debian_repository() { # Install downloader backend for GPG keys fetching __PACKAGES='wget' + # Required as it is not installed by default on Debian 9+ + if [ "$DISTRO_MAJOR_VERSION" -ge 9 ]; then + __PACKAGES="${__PACKAGES} gnupg2" + fi + # Make sure https transport is available if [ "$HTTP_VAL" = "https" ] ; then __PACKAGES="${__PACKAGES} apt-transport-https ca-certificates" From f548788093f79ae6f30abe3f9213a62bb527984f Mon Sep 17 00:00:00 2001 From: Bryce Larson Date: Thu, 1 Aug 2019 16:35:14 -0600 Subject: [PATCH 06/13] Fixing debian wheezy --- bootstrap-salt.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 82b6f05..5a62294 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -3381,14 +3381,8 @@ install_debian_git_post() { # Install initscripts for Debian 7 "Wheezy" elif [ ! -f "/etc/init.d/salt-$fname" ] || \ { [ -f "/etc/init.d/salt-$fname" ] && [ "$_FORCE_OVERWRITE" -eq $BS_TRUE ]; }; then - if [ -f "${_SALT_GIT_CHECKOUT_DIR}/pkg/salt-$fname.init" ]; then - __copyfile "${_SALT_GIT_CHECKOUT_DIR}/pkg/salt-${fname}.init" "/etc/init.d/salt-${fname}" - __copyfile "${_SALT_GIT_CHECKOUT_DIR}/pkg/salt-${fname}.environment" "/etc/default/salt-${fname}" - else - # Make sure wget is available - __check_command_exists wget || __apt_get_install_noinput wget || return 1 - __fetch_url "/etc/init.d/salt-${fname}" "${HTTP_VAL}://anonscm.debian.org/cgit/pkg-salt/salt.git/plain/debian/salt-${fname}.init" - fi + __copyfile "${_SALT_GIT_CHECKOUT_DIR}/pkg/deb/salt-${fname}.init" "/etc/init.d/salt-${fname}" + __copyfile "${_SALT_GIT_CHECKOUT_DIR}/pkg/deb/salt-${fname}.environment" "/etc/default/salt-${fname}" if [ ! -f "/etc/init.d/salt-${fname}" ]; then echowarn "The init script for salt-${fname} was not found, skipping it..." From dcbf247c4f3b1071739babfc71b46596d335c192 Mon Sep 17 00:00:00 2001 From: Jared Bristow Date: Wed, 14 Aug 2019 10:28:53 -0600 Subject: [PATCH 07/13] Fixed Amazon Linux 2 detection when lsb_release is installed --- bootstrap-salt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 6e06fd0..b1582de 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -1001,7 +1001,7 @@ __gather_linux_system_info() { elif [ "${DISTRO_NAME}" = "OracleServer" ]; then # This the Oracle Linux Server 6.5 DISTRO_NAME="Oracle Linux" - elif [ "${DISTRO_NAME}" = "AmazonAMI" ]; then + elif [ "${DISTRO_NAME}" = "AmazonAMI" ] || [ "${DISTRO_NAME}" = "Amazon" ]; then DISTRO_NAME="Amazon Linux AMI" elif [ "${DISTRO_NAME}" = "ManjaroLinux" ]; then DISTRO_NAME="Arch Linux" From 4c4aee89f3ae223b52b799ef98207f28001b2d08 Mon Sep 17 00:00:00 2001 From: Joel Michael Date: Mon, 26 Aug 2019 16:14:21 +1000 Subject: [PATCH 08/13] add raspbian_10_debian_base="10.0" --- bootstrap-salt.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 6e06fd0..b12bca7 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -1448,6 +1448,7 @@ __debian_derivatives_translation() { linuxmint_1_debian_base="8.0" raspbian_8_debian_base="8.0" raspbian_9_debian_base="9.0" + raspbian_10_debian_base="10.0" bunsenlabs_9_debian_base="9.0" turnkey_9_debian_base="9.0" From bfde7c36301900813220d41db9173c356b0c8270 Mon Sep 17 00:00:00 2001 From: "Gareth J. Greenaway" Date: Wed, 28 Aug 2019 13:15:23 -0700 Subject: [PATCH 09/13] Merging OS X specific bootstrap code into main project --- bootstrap-salt.sh | 135 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 133 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 2e3e397..2a3a290 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -601,7 +601,11 @@ elif [ "$ITYPE" = "stable" ]; then STABLE_REV="$1" shift elif [ "$(echo "$1" | grep -E '^([0-9]*\.[0-9]*\.[0-9]*)$')" != "" ]; then - STABLE_REV="archive/$1" + if [ "$(uname)" = "Darwin" ]; then + STABLE_REV="$1" + else + STABLE_REV="archive/$1" + fi shift else echo "Unknown stable version: $1 (valid: 1.6, 1.7, 2014.1, 2014.7, 2015.5, 2015.8, 2016.3, 2016.11, 2017.7, 2018.3, 2019.2, latest, \$MAJOR.\$MINOR.\$PATCH)" @@ -667,7 +671,11 @@ fi # Check if we're installing via a different Python executable and set major version variables if [ -n "$_PY_EXE" ]; then - _PY_PKG_VER=$(echo "$_PY_EXE" | sed -r "s/\\.//g") + if [ "$(uname)" = "Darwin" ]; then + _PY_PKG_VER=$(echo "$_PY_EXE" | sed "s/\\.//g") + else + _PY_PKG_VER=$(echo "$_PY_EXE" | sed -r "s/\\.//g") + fi _PY_MAJOR_VERSION=$(echo "$_PY_PKG_VER" | cut -c 7) if [ "$_PY_MAJOR_VERSION" != 3 ] && [ "$_PY_MAJOR_VERSION" != 2 ]; then @@ -1243,6 +1251,16 @@ __gather_bsd_system_info() { } +#--- FUNCTION ------------------------------------------------------------------------------------------------------- +# NAME: __gather_osx_system_info +# DESCRIPTION: Discover MacOS X +#---------------------------------------------------------------------------------------------------------------------- +__gather_osx_system_info() { + DISTRO_NAME="MacOSX" + DISTRO_VERSION=$(sw_vers -productVersion) +} + + #--- FUNCTION ------------------------------------------------------------------------------------------------------- # NAME: __gather_system_info # DESCRIPTION: Discover which system and distribution we are running. @@ -1258,6 +1276,9 @@ __gather_system_info() { openbsd|freebsd|netbsd ) __gather_bsd_system_info ;; + darwin ) + __gather_osx_system_info + ;; * ) echoerror "${OS_NAME} not supported."; exit 1 @@ -6610,6 +6631,116 @@ daemons_running_voidlinux() { # ####################################################################################################################### +####################################################################################################################### +# +# OS X / Darwin Install Functions +# + +__macosx_get_packagesite() { + DARWIN_ARCH="x86_64" + + __PY_VERSION_REPO="py2" + if [ -n "$_PY_EXE" ] && [ "$_PY_MAJOR_VERSION" -eq 3 ]; then + __PY_VERSION_REPO="py3" + fi + + PKG="salt-${STABLE_REV}-${__PY_VERSION_REPO}-${DARWIN_ARCH}.pkg" + SALTPKGCONFURL="https://repo.saltstack.com/osx/${PKG}" +} + +# Using a separate conf step to head for idempotent install... +__configure_macosx_pkg_details() { + __macosx_get_packagesite || return 1 + return 0 +} + +install_macosx_stable_deps() { + __configure_macosx_pkg_details || return 1 + return 0 +} + +install_macosx_git_deps() { + install_macosx_stable_deps || return 1 + + __fetch_url "/tmp/get-pip.py" "https://bootstrap.pypa.io/get-pip.py" || return 1 + + if [ -n "$_PY_EXE" ]; then + _PYEXE=${_PY_EXE} + else + _PYEXE=python2.7 + fi + + # Install PIP + $_PYEXE /tmp/get-pip.py || return 1 + + __git_clone_and_checkout || return 1 + + __PIP_REQUIREMENTS="dev_python27.txt" + if [ -n "$_PY_EXE" ] && [ "$_PY_MAJOR_VERSION" -eq 3 ]; then + __PIP_REQUIREMENTS="dev_python34.txt" + fi + + requirements_file="${_SALT_GIT_CHECKOUT_DIR}/requirements/${__PIP_REQUIREMENTS}" + pip install -U -r ${requirements_file} --install-option="--prefix=/opt/salt" || return 1 + + return 0 +} + +install_macosx_stable() { + install_macosx_stable_deps || return 1 + + /usr/bin/curl ${SALTPKGCONFURL} > /tmp/${PKG} || return 1 + + /usr/sbin/installer -pkg /tmp/${PKG} -target / || return 1 + + return 0 +} + +install_macosx_git() { + + if [ -n "$_PY_EXE" ]; then + _PYEXE=${_PY_EXE} + else + _PYEXE=python2.7 + fi + + if [ -f "${_SALT_GIT_CHECKOUT_DIR}/salt/syspaths.py" ]; then + $_PYEXE setup.py --salt-config-dir="$_SALT_ETC_DIR" --salt-cache-dir="${_SALT_CACHE_DIR}" ${SETUP_PY_INSTALL_ARGS} install --prefix=/opt/salt || return 1 + else + $_PYEXE setup.py ${SETUP_PY_INSTALL_ARGS} install --prefix=/opt/salt || return 1 + fi + + return 0 +} + +install_macosx_stable_post() { + if [ ! -f /etc/paths.d/salt ]; then + echo "/opt/salt/bin\n/usr/local/sbin\n" > /etc/paths.d/salt + fi + + source /etc/profile + + return 0 +} + +install_macosx_git_post() { + install_macosx_stable_post || return 1 + return 0 +} + +install_macosx_restart_daemons() { + [ $_START_DAEMONS -eq $BS_FALSE ] && return + + /bin/launchctl unload /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 + /bin/launchctl load /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 + + return 0 +} +# +# Ended OS X / Darwin Install Functions +# +####################################################################################################################### + ####################################################################################################################### # # Default minion configuration function. Matches ANY distribution as long as From 79f4818b6c638a2736a6b5db70d6d2764f8ce10f Mon Sep 17 00:00:00 2001 From: Felippe Burk Date: Wed, 28 Aug 2019 15:27:57 -0600 Subject: [PATCH 10/13] fixes for shellcheck --- bootstrap-salt.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 2a3a290..beafdbe 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -6681,7 +6681,7 @@ install_macosx_git_deps() { fi requirements_file="${_SALT_GIT_CHECKOUT_DIR}/requirements/${__PIP_REQUIREMENTS}" - pip install -U -r ${requirements_file} --install-option="--prefix=/opt/salt" || return 1 + pip install -U -r "${requirements_file}" --install-option="--prefix=/opt/salt" || return 1 return 0 } @@ -6689,9 +6689,9 @@ install_macosx_git_deps() { install_macosx_stable() { install_macosx_stable_deps || return 1 - /usr/bin/curl ${SALTPKGCONFURL} > /tmp/${PKG} || return 1 + /usr/bin/curl "${SALTPKGCONFURL}" > "/tmp/${PKG}" || return 1 - /usr/sbin/installer -pkg /tmp/${PKG} -target / || return 1 + /usr/sbin/installer -pkg "/tmp/${PKG}" -target / || return 1 return 0 } @@ -6715,9 +6715,10 @@ install_macosx_git() { install_macosx_stable_post() { if [ ! -f /etc/paths.d/salt ]; then - echo "/opt/salt/bin\n/usr/local/sbin\n" > /etc/paths.d/salt + print "%s\n" "/opt/salt/bin" "/usr/local/sbin" > /etc/paths.d/salt fi + # shellcheck disable=SC1091 source /etc/profile return 0 From d4991272c8c6946898d3a506f2cf2f16ca2ac822 Mon Sep 17 00:00:00 2001 From: Felippe Burk Date: Wed, 28 Aug 2019 16:05:37 -0600 Subject: [PATCH 11/13] really fixing this time --- bootstrap-salt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index beafdbe..a1a8ce9 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -6719,7 +6719,7 @@ install_macosx_stable_post() { fi # shellcheck disable=SC1091 - source /etc/profile + . /etc/profile return 0 } From f036abb7d4acf5310e163e225c5408ce5bd65790 Mon Sep 17 00:00:00 2001 From: Felippe Burk Date: Wed, 28 Aug 2019 17:52:31 -0600 Subject: [PATCH 12/13] adding -w to restart --- bootstrap-salt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index a1a8ce9..9a234f0 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -6732,8 +6732,8 @@ install_macosx_git_post() { install_macosx_restart_daemons() { [ $_START_DAEMONS -eq $BS_FALSE ] && return - /bin/launchctl unload /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 - /bin/launchctl load /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 + /bin/launchctl unload -w /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 + /bin/launchctl load -w /Library/LaunchDaemons/com.saltstack.salt.minion.plist || return 1 return 0 } From a602a8637941e973e98db855f6d6508c8432f2b4 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Thu, 3 Oct 2019 15:42:10 +0100 Subject: [PATCH 13/13] Update AUTHORS, Changelog and version for release --- AUTHORS.rst | 16 ++++++++++------ ChangeLog | 7 +++++++ bootstrap-salt.sh | 2 +- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 75efda4..1f824bd 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -30,13 +30,12 @@ Brandon Clifford brandon099 brandon.clifford@vivint.com Bret Fisher BretFisher bret@fishbrains.com Brian Kruger bkruger99 brian.kruger@elliemae.com bruce-one bruce-one -Вячеслав Спиридонов sp1r +Bryce Larson bryceml C. R. Oldham cro cr@saltstack.com Cam camereonsparr Charles McLaughlin cmclaughlin -Megan Wilhite Ch3LL megan.wilhite@gmail.com -Chris Rebert cvrebert chris.rebert@hulu.com Chris Buechler cbuechler cmb@pfsense.org +Chris Rebert cvrebert chris.rebert@hulu.com Christer Edwards cedwards Christian McHugh mchugh19 Clark Perkins iclarkperkins clark.perkins@digitalreasoning.com @@ -60,13 +59,14 @@ Eric Radman eradman ericshane@eradman.com Erik Ankrom erikankrom Erik Johnson terminalmage erik@saltstack.com EYJ eyj +Felippe Burk felippeb fizmat fizmat Forrest Alvarez gravyboat Fred Reimer freimer freimer@freimer.org Gareth J. Greenaway garethgreenaway gareth@wiked.org +gdm85 gdm85 Geoff Garside geoffgarside geoff@geoffgarside.co.uk George aflat gstock.public@gmail.com -gdm85 gdm85 ggillies ggillies Giuseppe Iannello giannello giuseppe.iannello@brokenloop.net Gregory Meno GregMeno gregory.meno@inktank.com @@ -74,8 +74,9 @@ Guillaume Derval GuillaumeDerval guillaume@guillaumederval.be gweis gweis Henrik Holmboe holmboe Howard Mei HowardMei howardleomei@gmail.com -Jan Heidbrink jheidbrink James Booth absolutejam vvalentine1337@gmail.com +Jan Heidbrink jheidbrink +Jared Bristow jars99 Jared E Stroud jaredestroud jaredestroud@gmail.com Jasper Lievisse Adriaanse jasperla jasper@humppa.nl JD decomposite @@ -89,8 +90,8 @@ Karl Grzeszczak karlgrz Kenneth Wilke KennethWilke Kevin Quinn kevinquinnyo kevin.quinn@totalserversolutions.com Ky-Anh Huynh icy -lomeroe lomeroe Liu Xiaohui oreh herolxh@gmail.com +lomeroe lomeroe Lorenzo Perone lopezio lorenzo.perone@yellowspace.net Lubomir Host lhost luthes luthes steve.luther@gmail.com @@ -106,6 +107,7 @@ Matthew Mead-Briggs mattmb Matthew Richardson mrichar1 Matthew Willson ixela Matthieu Guegan mguegan +Megan Wilhite Ch3LL megan.wilhite@gmail.com mfapouw mfapouw Michael A. Smith kojiromike michaels@syapse.com Michael Scherer mscherer @@ -164,4 +166,6 @@ Wout wfhg Yann Masson ymasson Yoan Blanc greut yoan@dosimple.ch Yushi Nakai nyushi +Zahiar Ahmed zahiar +Вячеслав Спиридонов sp1r ========================== ===================== ============================ diff --git a/ChangeLog b/ChangeLog index afd94dc..8002196 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ Version TBD (In Progress on the Develop Branch): +Version 2019.10.03: + * Fix possible typo with `gnupg-curl` vs `gnupg curl` (zahiar) + * Install only python3 packges if requested on ubuntu (noelmcloughlin) #1356 + * Fixing debian wheezy (bryceml) #1359 + * Fixed Amazon Linux 2 detection when lsb_release is installed (jars99) #1361 + * Mac OS Support (felippeb) #1363 #1364 #1365 #1366 + Version 2019.05.20: * Allow stable version selection for amazon linux (puluanau) #1328 * FreeBSD 12 support (sticky-note) #1329 diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 9a234f0..996a63c 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -23,7 +23,7 @@ #====================================================================================================================== set -o nounset # Treat unset variables as an error -__ScriptVersion="2019.05.20" +__ScriptVersion="2019.10.03" __ScriptName="bootstrap-salt.sh" __ScriptFullName="$0"