From: Daira Hopwood Date: Fri, 17 May 2013 19:47:42 +0000 (+0100) Subject: A missing basedir should cause an error if we try to read the config. refs #1971 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=5772e5b61250363584d90527c0163d412db71950;p=tahoe-lafs%2Ftahoe-lafs.git A missing basedir should cause an error if we try to read the config. refs #1971 Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/node.py b/src/allmydata/node.py index c7e96e70..c2c23450 100644 --- a/src/allmydata/node.py +++ b/src/allmydata/node.py @@ -119,6 +119,8 @@ class ConfigMixin: except EnvironmentError: if os.path.exists(tahoe_cfg): raise + if not os.path.isdir(self.basedir): + raise MissingConfigEntry("%s is missing or not a directory." % quote_output(self.basedir)) def error_about_old_config_files(self): """ If any old configuration files are detected, raise OldConfigError. """