fuel-plugin-manila/deployment_scripts/puppet/modules/manila_auxiliary/files/meta.sh

13 lines
258 B
Bash
Executable File

#!/bin/bash
. /root/openrc
if ! openstack flavor list | grep -q 'manila-service-flavor'; then
echo 'add manila-service-flavor'
openstack flavor create manila-service-flavor \
--id 100 \
--ram 256 \
--disk 0 \
--vcpus 1
fi