From 591e21f35eb4f254c65776771b9d030b563c9997 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 17 Oct 2016 09:17:47 -0600 Subject: [PATCH] Update the default archive_base path None of our labs are using /var/lib/teuthworker/archive anymore. The incorrect default could trip up users. Signed-off-by: Zack Cerza --- teuthology/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/config.py b/teuthology/config.py index 505666d3b5..ee0329012c 100644 --- a/teuthology/config.py +++ b/teuthology/config.py @@ -128,7 +128,7 @@ class TeuthologyConfig(YamlConfig): """ yaml_path = os.path.join(os.path.expanduser('~/.teuthology.yaml')) _defaults = { - 'archive_base': '/var/lib/teuthworker/archive', + 'archive_base': '/home/teuthworker/archive', 'archive_upload': None, 'archive_upload_key': None, 'archive_upload_url': None, -- 2.39.5