Skip to content

Commit 840cf5f

Browse files
committed
Merge develop into stable for v2024.01.04 release
2 parents 459b5e6 + 8aa272b commit 840cf5f

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ sum** of the downloaded ``bootstrap-salt.sh`` file.
3232

3333
The 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``

bootstrap-salt.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#======================================================================================================================
2424
set -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"

0 commit comments

Comments
 (0)