Fix installing salt-cloud package on Arch Linux

When passing the ``-L`` option to the bootstrap script to install
the salt-cloud package, the ``apache-libcloud`` package must be
installed.

However, on Arch Linux this packages is named ``python2-apache-libcloud``.

This commit updates the name of the libcloud package to be installed
on Arch Linux so that the ``-L`` option can be executed successfully.

Fixes #1090
This commit is contained in:
rallytime 2017-06-12 09:51:25 -06:00
parent 75ae772b33
commit 6c0fad6a84

View file

@ -4522,7 +4522,7 @@ install_arch_linux_stable_deps() {
pacman -Su --noconfirm --needed python2-yaml pacman -Su --noconfirm --needed python2-yaml
if [ "$_INSTALL_CLOUD" -eq $BS_TRUE ]; then if [ "$_INSTALL_CLOUD" -eq $BS_TRUE ]; then
pacman -Su --noconfirm --needed apache-libcloud || return 1 pacman -Su --noconfirm --needed python2-apache-libcloud || return 1
fi fi
if [ "${_EXTRA_PACKAGES}" != "" ]; then if [ "${_EXTRA_PACKAGES}" != "" ]; then