3
# deploy the openstack bundle using Juju 1.x or 2.0
5
# This assumes that you have bootstrapped and (for Juju 2.0) switched to the
9
version=$(juju --version | head -c 1)
10
if [ "$version" == "1" ]; then
11
juju-deployer -L -c manila.yaml
12
elif [ "$version" == "2" ]; then
13
juju deploy manila-juju-2.0.yaml
15
echo "Can't work with version $version"