Fix Arch not properly upgrading it's system package.

This commit is contained in:
Pedro Algarvio 2013-06-04 13:04:36 +01:00
parent ac78ae33b0
commit 16be41c55f
2 changed files with 11 additions and 0 deletions

View file

@ -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.

View file

@ -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
}