diff options
author | drebs <drebs@riseup.net> | 2017-09-13 12:31:17 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-09-14 12:04:56 -0300 |
commit | ee69f207716251ab7cbb6e95d06b7be8555165f6 (patch) | |
tree | 36b0c3ff6ac8653c4363a57fbb6a2ce824d912dd /testing/tests/server/test_config.py | |
parent | c95f26dbb9315b94cf74747fa9c071b89331dd06 (diff) |
[pkg] use /var/lib/soledad/blobs to store blobs
Soledad Server was previously using something in /srv to store blobs in
the server side. Debian/lintian doesn't like that at all, so we are
changing to /var/lib/soledad/blobs.
Closes: #8948
Diffstat (limited to 'testing/tests/server/test_config.py')
-rw-r--r-- | testing/tests/server/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/server/test_config.py b/testing/tests/server/test_config.py index 874682fd..2176832f 100644 --- a/testing/tests/server/test_config.py +++ b/testing/tests/server/test_config.py @@ -66,5 +66,5 @@ class ConfigurationParsingTest(unittest.TestCase): 'batching': False, 'blobs': False, 'services_tokens_file': '/srv/leap/soledad/auth.tokens', - 'blobs_path': '/srv/leap/soledad/blobs'} + 'blobs_path': '/var/lib/soledad/blobs'} self.assertDictEqual(expected, config['soledad-server']) |