This commit is contained in:
Brad Warren
2015-07-22 19:51:05 -07:00
parent 1a1ce7edcf
commit d2e2baa927
2 changed files with 2 additions and 0 deletions
@@ -126,6 +126,7 @@ class Proxy(configurators_common.Proxy):
return self._test_names return self._test_names
else: else:
return {"example.com"} return {"example.com"}
def deploy_cert(self, domain, cert_path, key_path, chain_path=None): def deploy_cert(self, domain, cert_path, key_path, chain_path=None):
"""Installs cert""" """Installs cert"""
cert_path, key_path, chain_path = self.copy_certs_and_keys( cert_path, key_path, chain_path = self.copy_certs_and_keys(
+1
View File
@@ -35,6 +35,7 @@ def create_le_config(parent_dir):
return argparse.Namespace(**config) # pylint: disable=star-args return argparse.Namespace(**config) # pylint: disable=star-args
def extract_configs(configs, parent_dir): def extract_configs(configs, parent_dir):
"""Extracts configs to a new dir under parent_dir and returns it""" """Extracts configs to a new dir under parent_dir and returns it"""
config_dir = os.path.join(parent_dir, "configs") config_dir = os.path.join(parent_dir, "configs")