From 7b84e0b8faec0bb679635836dc3f5c14c85500e9 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 25 Feb 2013 17:52:39 +0000 Subject: [PATCH] Suse packages provide `salt-syndic` as a separate package. --- bootstrap-salt.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 1694e81..aa0b139 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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 }