Merge "Remove Sheepdog plugin information"

This commit is contained in:
Zuul 2020-01-25 12:22:51 +00:00 committed by Gerrit Code Review
commit 5b41670970
1 changed files with 0 additions and 41 deletions

View File

@ -1,41 +0,0 @@
#!/bin/bash
#
# lib/cinder_plugins/sheepdog
# Configure the sheepdog driver
# Enable with:
#
# CINDER_DRIVER=sheepdog
# Dependencies:
#
# - ``functions`` file
# - ``cinder`` configurations
# configure_cinder_driver - make configuration changes, including those to other services
# Save trace setting
_XTRACE_CINDER_SHEEPDOG=$(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.sheepdog.SheepdogDriver"
}
# Restore xtrace
$_XTRACE_CINDER_SHEEPDOG
# Local variables:
# mode: shell-script
# End: