From 9945e20da22bd4163409ecffce4c36c4b2006f2c Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Sun, 16 Feb 2014 17:28:52 +0000 Subject: [PATCH] Arch can now install libcloud. Refs #278. And also upgrades if required. --- bootstrap-salt.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 9b82c1e..97f3b33 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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() {