Skip to content

Commit 27d2831

Browse files
committed
Drop legacy parameters
These parameters do not exist anymore in dehydrated. Remove them from the module.
1 parent d2a8133 commit 27d2831

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

manifests/init.pp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
# @param cron_integration Setup cron to automatically renew certificates.
1414
# @param ip_version Use only this IP version for name resolution.
1515
# @param ca Path to certificate authority.
16-
# @param ca_terms Path to certificate authority license terms redirect.
17-
# @param license Path to license agreement.
1816
# @param challengetype Challenge type to be used.
1917
# @param keysize Default keysize for private keys.
2018
# @param openssl_cnf Path to openssl config file.
@@ -45,8 +43,6 @@
4543

4644
Optional[Variant[Integer[4,4],Integer[6,6]]] $ip_version = undef,
4745
Optional[Stdlib::Httpurl] $ca = undef,
48-
Optional[Stdlib::Httpurl] $ca_terms = undef,
49-
Optional[String] $license = undef,
5046
Optional[Enum['http-01', 'dns-01']] $challengetype = undef,
5147
Optional[Integer[0]] $keysize = undef,
5248
Optional[String] $openssl_cnf = undef,

templates/config.epp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ IP_VERSION=<%= String($dehydrated::ip_version, '%p') %>
66
<% unless $dehydrated::ca =~ Undef { -%>
77
CA=<%= String($dehydrated::ca, '%p') %>
88
<% } -%>
9-
<% unless $dehydrated::ca_terms =~ Undef { -%>
10-
CA_TERMS=<%= String($dehydrated::ca_terms, '%p') %>
11-
<% } -%>
12-
<% unless $dehydrated::license =~ Undef { -%>
13-
LICENSE=<%= String($dehydrated::license, '%p') %>
14-
<% } -%>
159
<% unless $dehydrated::challengetype =~ Undef { -%>
1610
CHALLENGETYPE=<%= String($dehydrated::challengetype, '%p') %>
1711
<% } -%>

0 commit comments

Comments
 (0)