61c09b88cd
If you use the cinder NFS driver, it will create a file called nfs_shares.conf, containing a list of NFS shares cinder can use. The file is created with 660 permissions and owned by root:root. When c-vol starts, it has problems reading nfs_shares.conf, resulting in a "[Errno 13] Permission denied: '/etc/cinder/nfs_shares.conf'". This patch creates nfs_shares.conf without using sudo, so c-vol can at least read it. Change-Id: Ifce2bd4b9ff2191445a1964c1ce09c823d096d68 Closes-Bug: #1297916
42 lines
838 B
Plaintext
42 lines
838 B
Plaintext
# lib/cinder_plugins/nfs
|
|
# Configure the nfs driver
|
|
|
|
# Enable with:
|
|
#
|
|
# CINDER_DRIVER=nfs
|
|
|
|
# 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.nfs.NfsDriver"
|
|
iniset $CINDER_CONF DEFAULT nfs_shares_config "$CINDER_CONF_DIR/nfs_shares.conf"
|
|
echo "$CINDER_NFS_SERVERPATH" | tee "$CINDER_CONF_DIR/nfs_shares.conf"
|
|
}
|
|
|
|
# Restore xtrace
|
|
$MY_XTRACE
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# End:
|