Suse packages provide salt-syndic as a separate package.

This commit is contained in:
Pedro Algarvio 2013-02-25 17:52:39 +00:00
parent 7689c453fe
commit 7b84e0b8fa

View file

@ -1694,9 +1694,12 @@ install_opensuse_stable() {
if [ $INSTALL_MINION -eq $BS_TRUE ]; then
packages="${packages} salt-minion"
fi
if [ $INSTALL_MASTER -eq $BS_TRUE ] || [ $INSTALL_SYNDIC -eq $BS_TRUE ]; then
if [ $INSTALL_MASTER -eq $BS_TRUE ]; then
packages="${packages} salt-master"
fi
if [ $INSTALL_SYNDIC -eq $BS_TRUE ]; then
packages="${packages} salt-syndic"
fi
zypper --non-interactive install --auto-agree-with-licenses $packages
}