feat: Update salt-bootstrap script to version 2022.05.19

This commit is contained in:
Carlos Álvaro
2022-08-10 19:01:43 +02:00
parent 90553e06cf
commit d08fe135e0
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ for the list of changes in SaltStack.
**3005**
- Upgrade `salt-master` to `3005` *Phosphorus*
- Upgrade `salt-bootstrap` to version `2022.05.19`
- Change Docker base image to `ubuntu:jammy-20220801`
- Use `python3` default distro version
- Install `python3-pygit2` version `1.6.1` from Ubuntu repositories

View File

@@ -38,10 +38,10 @@ install_pkgs --quiet \
python3-pygit2
# Downloading bootstrap-salt.sh script
BOOTSTRAP_VERSION='2022.03.15'
BOOTSTRAP_VERSION='2022.05.19'
BOOTSTRAP_URL="https://raw.githubusercontent.com/saltstack/salt-bootstrap/v${BOOTSTRAP_VERSION}/bootstrap-salt.sh"
BOOTSTRAP_FILE='bootstrap-salt.sh'
BOOTSTRAP_SHA256='ed66dc9e71aed7602b9ae548f8535131831026f934f19f868fdefbe6a3ab9bf9'
BOOTSTRAP_SHA256='e92e1df6930285cf23eda188bee3cfa3dd6c577b4fb7aa91b29213ad820199b1'
download "${BOOTSTRAP_URL}" "${BOOTSTRAP_FILE}"
check_sha256 "${BOOTSTRAP_FILE}" "${BOOTSTRAP_SHA256}"