Skip to content

Commit

Permalink
Match template to manifest (#123)
Browse files Browse the repository at this point in the history
Fixes #122
  • Loading branch information
yakatz authored Jun 25, 2022
1 parent 16082c5 commit 628b6a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Wed Jun 22 2022 Yehuda Katz <[email protected]> - 7.4.1
- Allow `krb5_server` to be optional as implemented in the template

* Fri Jun 03 2022 Chris Tessmer <[email protected]> - 7.4.0
- Update from camptocamp/systemd to puppet/systemd

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-sssd",
"version": "7.4.0",
"version": "7.4.1",
"author": "SIMP Team",
"summary": "Manages SSSD",
"license": "Apache-2.0",
Expand Down
4 changes: 3 additions & 1 deletion templates/provider/krb5.epp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%- |
String $domain,
Simplib::Host $krb5_server,
Optional[Simplib::Host] $krb5_server = undef,
String $krb5_realm,
Optional[Sssd::DebugLevel] $debug_level = undef,
Boolean $debug_timestamps = true,
Expand All @@ -24,7 +24,9 @@ debug_level = <%= $debug_level %>
<% } -%>
debug_timestamps = <%= $debug_timestamps %>
debug_microseconds = <%= $debug_microseconds %>
<% if $krb5_server { -%>
krb5_server = <%= $krb5_server %>
<% } -%>
krb5_realm = <%= $krb5_realm %>
<% if $krb5_kpasswd { -%>
krb5_kpasswd = <%= $krb5_kpasswd %>
Expand Down

0 comments on commit 628b6a1

Please sign in to comment.