File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ # v2024.01.04
2+
3+ ## What's Changed
4+
5+ - Add arm support for Debian 10 by @twangboy in https://github.com/saltstack/salt-bootstrap/pull/1981
6+
7+ ** Full Changelog** : https://github.com/saltstack/salt-bootstrap/compare/v2023.11.16...v2024.01.04
8+
19# v2023.11.16
210
311## What's Changed
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ sum** of the downloaded ``bootstrap-salt.sh`` file.
3232
3333The SHA256 sum of the ``bootstrap-salt.sh `` file, per release, is:
3434
35+ - 2023.11.16: ``3757ed82161113fed4c711fd7332e922265eeeb54e6e4f657a08ea82d57cc3a2 ``
3536- 2023.11.07: ``91f8a3bfb8b14476f7793c7f20cec7bfc638c10c073786f9a8904a858a929784 ``
3637- 2023.08.03: ``963e559bdb85adecfbbec2c3b81190392bc59b24992e4491e919cd748eeafcb8 ``
3738- 2023.07.25: ``eaaaadaed40fe2e791d59a9e48f24449428a35ca61782d9139f1272c05524323 ``
Original file line number Diff line number Diff line change 2323# ======================================================================================================================
2424set -o nounset # Treat unset variables as an error
2525
26- __ScriptVersion=" 2023.11.16 "
26+ __ScriptVersion=" 2024.01.04 "
2727__ScriptName=" bootstrap-salt.sh"
2828
2929__ScriptFullName=" $0 "
@@ -1521,9 +1521,9 @@ __check_dpkg_architecture() {
15211521 if [ " $_CUSTOM_REPO_URL " != " null" ]; then
15221522 warn_msg=" Support for arm64 is experimental, make sure the custom repository used has the expected structure and contents."
15231523 else
1524- # Saltstack official repository has arm64 metadata beginning with Debian 11 ,
1524+ # Saltstack official repository has arm64 metadata beginning with Debian 10 ,
15251525 # use amd64 repositories on arm64 for anything older, since all pkgs are arch-independent
1526- if [ " $DISTRO_NAME_L " = " debian" ] && [ " $DISTRO_MAJOR_VERSION " -lt 11 ]; then
1526+ if [ " $DISTRO_NAME_L " = " debian" ] && [ " $DISTRO_MAJOR_VERSION " -lt 10 ]; then
15271527 __REPO_ARCH=" amd64"
15281528 else
15291529 __REPO_ARCH=" arm64"
You can’t perform that action at this time.
0 commit comments