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 29203938a0)
This commit is contained in:
Thomas Bechtold 2017-02-23 06:48:29 -05:00 committed by Tom Barron
parent 8d3185e6b5
commit 9bb4efe8b0
1 changed files with 1 additions and 1 deletions

View File

@ -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
}