From 2227b0e48127f1e081815fbd66d580472ed57a0f Mon Sep 17 00:00:00 2001 From: DamianZaremba Date: Mon, 31 Dec 2012 17:48:59 +0000 Subject: [PATCH] Moving config option to match keystone module --- salt/auth/keystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/auth/keystone.py b/salt/auth/keystone.py index bdf6453b36..99abf412d8 100644 --- a/salt/auth/keystone.py +++ b/salt/auth/keystone.py @@ -15,7 +15,7 @@ def get_auth_url(): Try and get the url from the config, else return localhost ''' try: - return __opts__['auth.keystone.url'] + return __opts__['keystone.auth_url'] except KeyError: return 'http://localhost:35357/v2.0'