mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 02:00:22 +00:00
Merge pull request #1027 from vutny/fix-alpine-stable
Alpine Linux: fix installation of multiple pkgs ("stable" bootstrap)
This commit is contained in:
commit
073fc6191d
1 changed files with 2 additions and 1 deletions
|
@ -4248,7 +4248,8 @@ install_alpine_linux_stable() {
|
||||||
__PACKAGES="${__PACKAGES} salt-syndic"
|
__PACKAGES="${__PACKAGES} salt-syndic"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
apk -U add "${__PACKAGES}" || return 1
|
# shellcheck disable=SC2086
|
||||||
|
apk -U add ${__PACKAGES} || return 1
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue