From ef844fd08da208947c8e5d8e74e598d7cf7072af Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 15 Dec 2014 16:32:43 -0500 Subject: [PATCH] remove $KEYSTONE_TOKEN_HASH_ALGORITHM Now that Keystone is back to UUID token defaults the use case for this in devstack is extremely dubious, and it can be set through via local.conf if anyone *really* cares. Part of bp:devstack-nounset Change-Id: I644b5b1579952959d253758b2a12b97d8a704657 --- lib/horizon | 3 --- lib/keystone | 7 ------- 2 files changed, 10 deletions(-) diff --git a/lib/horizon b/lib/horizon index 3f3b1ca28f..edb95e9812 100644 --- a/lib/horizon +++ b/lib/horizon @@ -105,9 +105,6 @@ function init_horizon { _horizon_config_set $local_settings "" OPENSTACK_HOST \"${KEYSTONE_SERVICE_HOST}\" _horizon_config_set $local_settings "" OPENSTACK_KEYSTONE_URL "\"${KEYSTONE_SERVICE_PROTOCOL}://${KEYSTONE_SERVICE_HOST}:${KEYSTONE_SERVICE_PORT}/v2.0\"" - if [[ -n "$KEYSTONE_TOKEN_HASH_ALGORITHM" ]]; then - _horizon_config_set $local_settings "" OPENSTACK_TOKEN_HASH_ALGORITHM \""$KEYSTONE_TOKEN_HASH_ALGORITHM"\" - fi if [ -f $SSL_BUNDLE_FILE ]; then _horizon_config_set $local_settings "" OPENSTACK_SSL_CACERT \"${SSL_BUNDLE_FILE}\" diff --git a/lib/keystone b/lib/keystone index 9c0b01378c..071dc908ae 100644 --- a/lib/keystone +++ b/lib/keystone @@ -318,10 +318,6 @@ function configure_keystone { iniset $KEYSTONE_CONF DEFAULT admin_workers "$API_WORKERS" # Public workers will use the server default, typically number of CPU. - - if [[ -n "$KEYSTONE_TOKEN_HASH_ALGORITHM" ]]; then - iniset $KEYSTONE_CONF token hash_algorithm "$KEYSTONE_TOKEN_HASH_ALGORITHM" - fi } function configure_keystone_extensions { @@ -443,9 +439,6 @@ function configure_auth_token_middleware { iniset $conf_file $section admin_user $admin_user iniset $conf_file $section admin_password $SERVICE_PASSWORD iniset $conf_file $section signing_dir $signing_dir - if [[ -n "$KEYSTONE_TOKEN_HASH_ALGORITHM" ]]; then - iniset $conf_file keystone_authtoken hash_algorithms "$KEYSTONE_TOKEN_HASH_ALGORITHM" - fi } # init_keystone() - Initialize databases, etc.