mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
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:
parent
75ae772b33
commit
6c0fad6a84
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue