From 9bb4efe8b06bee72a66bed7a984147aa67e0323c Mon Sep 17 00:00:00 2001 From: Thomas Bechtold Date: Thu, 23 Feb 2017 06:48:29 -0500 Subject: [PATCH] Fix syntax in devstack plugin Shell syntax is "else", not "else:". This fixes: /opt/stack/manila/devstack/plugin.sh: line 647: else:: command not found Change-Id: I1742a71a3c637c4224c15e670862bf1b47d4a95f (cherry picked from commit 29203938a03d07b031427547671a883f9f5be1e7) --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index fc87acc399..d6c3194be9 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -644,7 +644,7 @@ function _install_nfs_and_samba { install_package nfs-utils samba elif is_suse; then install_package nfs-kernel-server nfs-utils samba - else: + else echo "This distro is not supported. Skipping step of NFS and Samba installation." fi }