45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
![]() |
# lib/cinder_plugins/XenAPINFS
|
||
|
# Configure the XenAPINFS driver
|
||
|
|
||
|
# Enable with:
|
||
|
#
|
||
|
# CINDER_DRIVER=XenAPINFS
|
||
|
|
||
|
# 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() {
|
||
|
iniset $CINDER_CONF DEFAULT volume_driver "cinder.volume.drivers.xenapi.sm.XenAPINFSDriver"
|
||
|
iniset $CINDER_CONF DEFAULT xenapi_connection_url "$CINDER_XENAPI_CONNECTION_URL"
|
||
|
iniset $CINDER_CONF DEFAULT xenapi_connection_username "$CINDER_XENAPI_CONNECTION_USERNAME"
|
||
|
iniset $CINDER_CONF DEFAULT xenapi_connection_password "$CINDER_XENAPI_CONNECTION_PASSWORD"
|
||
|
iniset $CINDER_CONF DEFAULT xenapi_nfs_server "$CINDER_XENAPI_NFS_SERVER"
|
||
|
iniset $CINDER_CONF DEFAULT xenapi_nfs_serverpath "$CINDER_XENAPI_NFS_SERVERPATH"
|
||
|
}
|
||
|
|
||
|
# Restore xtrace
|
||
|
$MY_XTRACE
|
||
|
|
||
|
# Local variables:
|
||
|
# mode: shell-script
|
||
|
# End:
|