devstack/lib/cinder_plugins/solidfire
Ian Wienand aee18c749b Enforce function declaration format in bash8
Check that function calls look like ^function foo {$ in bash8, and fix
all existing failures of that check.  Add a note to HACKING.rst

Change-Id: Ic19eecb39e0b20273d1bcd551a42fe400d54e938
2014-02-28 07:59:03 +11:00

49 lines
1.0 KiB
Plaintext

# lib/cinder_plugins/solidfire
# Configure the solidfire driver
# Enable with:
#
# CINDER_DRIVER=solidfire
# Dependencies:
#
# - ``functions`` file
# - ``cinder`` configurations
# configure_cinder_driver - make configuration changes, including those to other services
# Save trace setting
MY_XTRACE=$(set +o | grep xtrace)
set +o xtrace
# Defaults
# --------
# Set up default directories
# Entry Points
# ------------
# configure_cinder_driver - Set config files, create data dirs, etc
function configure_cinder_driver {
# To use solidfire, set the following in localrc:
# CINDER_DRIVER=solidfire
# SAN_IP=<mvip>
# SAN_LOGIN=<cluster-admin-account>
# SAN_PASSWORD=<cluster-admin-password>
iniset $CINDER_CONF DEFAULT volume_driver "cinder.volume.drivers.solidfire.SolidFireDriver"
iniset $CINDER_CONF DEFAULT san_ip $SAN_IP
iniset $CINDER_CONF DEFAULT san_login $SAN_LOGIN
iniset $CINDER_CONF DEFAULT san_password $SAN_PASSWORD
}
# Restore xtrace
$MY_XTRACE
# Local variables:
# mode: shell-script
# End: