mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Install python-zypp
on SuSE and openSUSE
This is required by Salt's `zypper` module.
This commit is contained in:
parent
cf954100b2
commit
26e8d8c857
1 changed files with 6 additions and 2 deletions
|
@ -3680,7 +3680,9 @@ install_opensuse_stable_deps() {
|
|||
zypper --gpg-auto-import-keys --non-interactive update || return 1
|
||||
fi
|
||||
|
||||
__PACKAGES="libzmq3 python python-Jinja2 python-M2Crypto python-PyYAML python-requests"
|
||||
# Salt needs python-zypp installed in order to use the zypper module
|
||||
__PACKAGES="python-zypp"
|
||||
__PACKAGES="${__PACKAGES} libzmq3 python python-Jinja2 python-M2Crypto python-PyYAML python-requests"
|
||||
__PACKAGES="${__PACKAGES} python-msgpack-python python-pycrypto python-pyzmq python-xml"
|
||||
|
||||
if [ "$_INSTALL_CLOUD" -eq $BS_TRUE ]; then
|
||||
|
@ -3846,7 +3848,9 @@ install_suse_11_stable_deps() {
|
|||
fi
|
||||
|
||||
# shellcheck disable=SC2089
|
||||
__PACKAGES="libzmq3 python python-Jinja2 'python-M2Crypto>=0.21' python-msgpack-python"
|
||||
# Salt needs python-zypp installed in order to use the zypper module
|
||||
__PACKAGES="python-zypp"
|
||||
__PACKAGES="${__PACKAGES} libzmq3 python python-Jinja2 'python-M2Crypto>=0.21' python-msgpack-python"
|
||||
__PACKAGES="${__PACKAGES} python-pycrypto python-pyzmq python-pip python-xml python-requests"
|
||||
|
||||
if [ "$SUSE_PATCHLEVEL" -eq 1 ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue