From: Markos Chandras Date: Fri, 1 Sep 2017 09:15:06 +0000 (+0100) Subject: xci: xci-deploy.sh: Allow xci-deploy.sh to run on SUSE hosts X-Git-Tag: 6.0.0~315 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F21%2F41621%2F2;p=releng-xci.git xci: xci-deploy.sh: Allow xci-deploy.sh to run on SUSE hosts SUSE support is slowly being added to XCI. Change-Id: I1ab6c01d3a33a9b2264992b5e1d202146972743f Signed-off-by: Markos Chandras --- diff --git a/xci/xci-deploy.sh b/xci/xci-deploy.sh index 24936dd5..f3b3c0cc 100755 --- a/xci/xci-deploy.sh +++ b/xci/xci-deploy.sh @@ -91,11 +91,11 @@ case ${OS_FAMILY,,} in ;; esac -# There is no CentOS or openSUSE support at all -if [[ $OS_FAMILY != Debian ]]; then +# There is no CentOS support at all +if [[ $OS_FAMILY == RedHat ]]; then echo "" - echo "Error: Sorry, only Ubuntu hosts are supported for now!" - echo "Error: CentOS7 and openSUSE Leap support is still work in progress." + echo "Error: Sorry, only Ubuntu and SUSE hosts are supported for now!" + echo "Error: CentOS 7 support is still work in progress." echo "" exit 1 fi