Removed 3rd parameter, becaus it's in site def too
This commit is contained in:
parent
2a4534bfa4
commit
73a45eafab
|
@ -42,10 +42,13 @@ packages:
|
|||
handle => "certbot_installed";
|
||||
}
|
||||
|
||||
bundle agent certbot_cert(site,webroot,domain)
|
||||
bundle agent certbot_cert(site,webroot)
|
||||
{
|
||||
|
||||
vars:
|
||||
|
||||
"domain" string => "$(site[domain])";
|
||||
|
||||
"site_json" string => storejson(@(site));
|
||||
"args" string => string_mustache(
|
||||
"-d {{domain}} {{#aliases}} -d {{.}} {{/aliases}}",
|
||||
|
@ -71,7 +74,8 @@ classes:
|
|||
or => {no_cert_file, certbot_repaired};
|
||||
|
||||
defaults:
|
||||
"webroot" string => "standalone";
|
||||
"webroot" string => "standalone";
|
||||
"domain" string => "$(site[domain])";
|
||||
|
||||
methods:
|
||||
"any" usebundle => install_certbot;
|
||||
|
|
Loading…
Reference in New Issue