summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2020-08-19 23:15:07 -0500
committerJohn Estabrook <jestabro@vyos.io>2020-08-19 23:15:07 -0500
commit0bc94e588fea31888445d182f54803598e82b615 (patch)
treede946660a792a7d6a50ce3be9830cca362f078b1 /src
parent106073a1899fcc781a929438df40b5b29433eb3d (diff)
downloadvyos-1x-0bc94e588fea31888445d182f54803598e82b615.tar.gz
vyos-1x-0bc94e588fea31888445d182f54803598e82b615.zip
certbot: T2815: change config dir to /config/auth/letsencrypt
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/le_cert.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/le_cert.py b/src/conf_mode/le_cert.py
index 5b965f95f..755c89966 100755
--- a/src/conf_mode/le_cert.py
+++ b/src/conf_mode/le_cert.py
@@ -27,6 +27,7 @@ from vyos import airbag
airbag.enable()
vyos_conf_scripts_dir = vyos.defaults.directories['conf_mode']
+vyos_certbot_dir = vyos.defaults.directories['certbot']
dependencies = [
'https.py',
@@ -45,7 +46,7 @@ def request_certbot(cert):
else:
domain_flag = ''
- certbot_cmd = 'certbot certonly -n --nginx --agree-tos --no-eff-email --expand {0} {1}'.format(email_flag, domain_flag)
+ certbot_cmd = f'certbot certonly --config-dir {vyos_certbot_dir} -n --nginx --agree-tos --no-eff-email --expand {email_flag} {domain_flag}'
cmd(certbot_cmd,
raising=ConfigError,