Fix lsb installation for SUSE
zypper has a "-n" (non-interactive) switch. "-y" is not known
as a global option.
Change-Id: I6537529e91c12c5f0d15a9faa2cca8aedaf7d956
diff --git a/functions-common b/functions-common
index a26cc50..d6e4663 100644
--- a/functions-common
+++ b/functions-common
@@ -322,7 +322,7 @@
# XXX: old code paths seem to have assumed SUSE platforms also
# had "yum". Keep this ordered above yum so we don't try to
# install the rh package. suse calls it just "lsb"
- sudo zypper -y install lsb
+ sudo zypper -n install lsb
elif [[ -x $(which dnf 2>/dev/null) ]]; then
sudo dnf install -y redhat-lsb-core
elif [[ -x $(which yum 2>/dev/null) ]]; then