Arch can now install libcloud. Refs #278.

And also upgrades if required.
This commit is contained in:
Pedro Algarvio 2014-02-16 17:28:52 +00:00
parent b87fc1b677
commit 9945e20da2

View file

@ -2380,6 +2380,15 @@ Include = /etc/pacman.d/salt.conf
Server = http://intothesaltmine.org/archlinux
SigLevel = Optional TrustAll
_eof
if [ $_UPGRADE_SYS -eq $BS_TRUE ]; then
pacman -Syyu --noconfirm --needed || return 1
fi
if [ $_INSTALL_CLOUD -eq $BS_TRUE ]; then
pacman -Sy --noconfirm --needed apache-libcloud || return 1
fi
}
install_arch_linux_git_deps() {