This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DLAB-1594-2 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit a9087e333710c0c93c978743161a46f06d09df96 Author: leonidfrolov <[email protected]> AuthorDate: Wed Aug 5 19:15:22 2020 +0300 [DLAB-1594]: fixed some errors --- infrastructure-provisioning/src/general/lib/os/debian/common_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure-provisioning/src/general/lib/os/debian/common_lib.py b/infrastructure-provisioning/src/general/lib/os/debian/common_lib.py index 1ff61c6..5e44166 100644 --- a/infrastructure-provisioning/src/general/lib/os/debian/common_lib.py +++ b/infrastructure-provisioning/src/general/lib/os/debian/common_lib.py @@ -203,7 +203,7 @@ def configure_nginx_LE(domain_name, node): server_name_line =' server_name {}.{};'.format(node, domain_name) cert_path_line = ' ssl_certificate /etc/letsencrypt/live/{}.{}/fullchain.pem;'.format(node, domain_name) cert_key_line = ' ssl_certificate_key /etc/letsencrypt/live/{}.{}/privkey.pem;'.format(node, domain_name) - certbot_service = 'ExecStart = /usr/bin/certbot -q renew --pre-hook \"service nginx stop\" --post-hook \"service nginx start\"' + certbot_service = "ExecStart = /usr/bin/certbot -q renew --pre-hook 'service nginx stop' --post-hook 'service nginx start'" certbot_service_path = '/lib/systemd/system/certbot.service' if node == 'ssn': nginx_config_path = '/etc/nginx/conf.d/nginx_proxy.conf' --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
