Skip to content

Commit 628b6a1

Browse files
authored
Match template to manifest (#123)
Fixes #122
1 parent 16082c5 commit 628b6a1

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* Wed Jun 22 2022 Yehuda Katz <[email protected]> - 7.4.1
2+
- Allow `krb5_server` to be optional as implemented in the template
3+
14
* Fri Jun 03 2022 Chris Tessmer <[email protected]> - 7.4.0
25
- Update from camptocamp/systemd to puppet/systemd
36

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simp-sssd",
3-
"version": "7.4.0",
3+
"version": "7.4.1",
44
"author": "SIMP Team",
55
"summary": "Manages SSSD",
66
"license": "Apache-2.0",

templates/provider/krb5.epp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<%- |
22
String $domain,
3-
Simplib::Host $krb5_server,
3+
Optional[Simplib::Host] $krb5_server = undef,
44
String $krb5_realm,
55
Optional[Sssd::DebugLevel] $debug_level = undef,
66
Boolean $debug_timestamps = true,
@@ -24,7 +24,9 @@ debug_level = <%= $debug_level %>
2424
<% } -%>
2525
debug_timestamps = <%= $debug_timestamps %>
2626
debug_microseconds = <%= $debug_microseconds %>
27+
<% if $krb5_server { -%>
2728
krb5_server = <%= $krb5_server %>
29+
<% } -%>
2830
krb5_realm = <%= $krb5_realm %>
2931
<% if $krb5_kpasswd { -%>
3032
krb5_kpasswd = <%= $krb5_kpasswd %>

0 commit comments

Comments
 (0)