mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fix Arch not properly upgrading it's system package.
This commit is contained in:
parent
ac78ae33b0
commit
16be41c55f
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Version 1.5.6:
|
||||
* Distro Support Fixed:
|
||||
* Arch now upgrades it's system package properly as suggested on their mailing list.
|
||||
|
||||
|
||||
Version 1.5.5:
|
||||
* Fixed a variable error in the new pre-seed feature.
|
||||
* Fixed the destination path to where the pre-seed minions keys should be copied.
|
||||
|
|
|
@ -1945,6 +1945,12 @@ install_arch_linux_git_deps() {
|
|||
|
||||
install_arch_linux_stable() {
|
||||
pacman -Sy --noconfirm pacman || return 1
|
||||
# See https://mailman.archlinux.org/pipermail/arch-dev-public/2013-June/025043.html
|
||||
# to know why we're ignoring below.
|
||||
pacman -Syu --noconfirm --ignore filesystem,bash || return 1
|
||||
pacman -S --noconfirm bash || return 1
|
||||
pacman -Su --noconfirm || return 1
|
||||
# We can now resume regular salt update
|
||||
pacman -Syu --noconfirm salt || return 1
|
||||
return 0
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue