Move auth_token configurations to quantum.conf

keystone auth_token middleware now allows quantum to have auth_token
configuration in quantum.conf. auth_token middleware supports
auth_token configuration both in api-paste.ini and quantum.conf,
so we can apply this change at any timing.

Change-Id: Ie5dd63e6c6938d2c8118e0f6090ef057c21a772a
This commit is contained in:
Akihiro MOTOKI
2013-02-11 23:45:19 +09:00
parent cfb3a0f12f
commit 712feb663c

View File

@@ -507,7 +507,11 @@ function _configure_quantum_service() {
iniset $QUANTUM_CONF DEFAULT allow_overlapping_ips $Q_ALLOW_OVERLAPPING_IP
iniset $QUANTUM_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY
_quantum_setup_keystone $Q_API_PASTE_FILE filter:authtoken
_quantum_setup_keystone $QUANTUM_CONF keystone_authtoken
# Comment out keystone authtoken configuration in api-paste.ini
# It is required to avoid any breakage in Quantum where the sample
# api-paste.ini has authtoken configurations.
_quantum_commentout_keystone_authtoken $Q_API_PASTE_FILE filter:authtoken
# Configure plugin
quantum_plugin_configure_service
@@ -573,6 +577,21 @@ function _quantum_setup_keystone() {
rm -f $QUANTUM_AUTH_CACHE_DIR/*
}
function _quantum_commentout_keystone_authtoken() {
local conf_file=$1
local section=$2
inicomment $conf_file $section auth_host
inicomment $conf_file $section auth_port
inicomment $conf_file $section auth_protocol
inicomment $conf_file $section auth_url
inicomment $conf_file $section admin_tenant_name
inicomment $conf_file $section admin_user
inicomment $conf_file $section admin_password
inicomment $conf_file $section signing_dir
}
function _quantum_setup_interface_driver() {
quantum_plugin_setup_interface_driver $1
}