From 1ca6d880846c34686a395b22e92b0a09a786e0af Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Thu, 15 Mar 2012 23:11:58 -0700 Subject: [PATCH] Wrong dir --- devstack/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/settings.py b/devstack/settings.py index 81cb88a8..9c62fb0a 100644 --- a/devstack/settings.py +++ b/devstack/settings.py @@ -90,6 +90,6 @@ ACTIONS = [INSTALL, UNINSTALL, START, STOP] # Where the configs and templates should be at. STACK_BIN_DIR = os.path.abspath(os.path.dirname(sys.argv[0])) STACK_CONFIG_DIR = os.path.join(STACK_BIN_DIR, "conf") -STACK_DISTRO_DIR = os.path.join(STACK_BIN_DIR, "distros") +STACK_DISTRO_DIR = os.path.join(STACK_CONFIG_DIR, "distros") STACK_TEMPLATE_DIR = os.path.join(STACK_CONFIG_DIR, "templates") STACK_CONFIG_LOCATION = os.path.join(STACK_CONFIG_DIR, "stack.ini")