aboutsummaryrefslogtreecommitdiff
path: root/steuermann/config.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-07-03 21:02:14 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-07-03 21:02:14 -0400
commit75d3c99573e2459579afed8c540beadec8011de7 (patch)
treef6e8be357e19014b8e989e7a1b1f8581225195a5 /steuermann/config.py
parent73ee9cb40f6539e9e70d41f7871ebefe929173a6 (diff)
downloadsteuermann-75d3c99573e2459579afed8c540beadec8011de7.tar.gz
Add hosts_config variable
Diffstat (limited to 'steuermann/config.py')
-rw-r--r--steuermann/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/steuermann/config.py b/steuermann/config.py
index 7f0aaf8..456fab2 100644
--- a/steuermann/config.py
+++ b/steuermann/config.py
@@ -5,6 +5,7 @@ import sys
_sys = sys.path
config_dir = os.path.join(os.path.expanduser('~'), '.steuermann', 'default')
user_config = os.path.join(config_dir, 'config.py')
+hosts_config = os.path.join(config_dir, 'hosts.ini')
if not os.path.exists(config_dir):
os.makedirs(config_dir, mode=0o700)