Commit 2018b7fc authored by Lucas Carvalho's avatar Lucas Carvalho Committed by Łukasz Nowak

The signature-private-key-file comes from networkcache section.

Well, according to the commit d8dca883a54ee87aafed3a82921594e5b508b388
at slapos.core.git, this parameter is always under networkcache section
to keep the configuration consistenty.
parent 18705c55
...@@ -360,7 +360,7 @@ class Buildout(UserDict.DictMixin): ...@@ -360,7 +360,7 @@ class Buildout(UserDict.DictMixin):
'upload-dir-url', '') 'upload-dir-url', '')
self.signature_certificate_file = networkcache_section.get( self.signature_certificate_file = networkcache_section.get(
'signature-certificate-file', '') 'signature-certificate-file', '')
self.signature_private_key_file = options.get( self.signature_private_key_file = networkcache_section.get(
'signature-private-key-file', '') 'signature-private-key-file', '')
self._logger.info('Networkcache enabled.') self._logger.info('Networkcache enabled.')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment