File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ letsencrypt:
31
31
# more information, see: https://certbot.eff.org/docs/using.html#renewal
32
32
post_renew :
33
33
cmds : []
34
+ create_init_cert_subcmd : certonly
34
35
cron :
35
36
minute : random
36
37
hour : random
Original file line number Diff line number Diff line change 42
42
create- initial- cert- {{ setname }}- {{ domainlist | join(' +' ) }}:
43
43
cmd.run:
44
44
- unless: {{ check_cert_cmd }} {{ setname }}
45
- - name: {{ create_cert_cmd }} certonly -- quiet -- cert- name {{ setname }} - d {{ domainlist| join(' -d ' ) }} -- non- interactive
45
+ - name: {{ create_cert_cmd }} {{ letsencrypt.create_init_cert_subcmd }} -- quiet -- cert- name {{ setname }} - d {{ domainlist| join(' -d ' ) }} -- non- interactive
46
46
{% if not letsencrypt.use_package % }
47
47
- cwd: {{ letsencrypt.cli_install_dir }}
48
48
{% endif % }
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ letsencrypt:
15
15
# have specific version of certbot you can enable it. The version value
16
16
# should match a certbot/certbot branch.
17
17
version : 0.30.x
18
+ # Subcommand used for certificates' first generation cmd ( run | certonly | renew )
19
+ create_init_cert_subcmd : certonly
18
20
# Any parameter from the cli can be specified in the config file
19
21
# check https://certbot.eff.org/docs/using.html#configuration-file
20
22
config :
You can’t perform that action at this time.
0 commit comments