From: Zack Cerza Date: Mon, 17 Oct 2016 15:17:47 +0000 (-0600) Subject: Update the default archive_base path X-Git-Tag: 1.1.0~519^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F966%2Fhead;p=teuthology.git 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 --- diff --git a/teuthology/config.py b/teuthology/config.py index 505666d3b..ee0329012 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,