File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
4
* Fri Jun 03 2022 Chris Tessmer <
[email protected] > - 7.4.0
2
5
- Update from camptocamp/systemd to puppet/systemd
3
6
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simp-sssd" ,
3
- "version" : " 7.4.0 " ,
3
+ "version" : " 7.4.1 " ,
4
4
"author" : " SIMP Team" ,
5
5
"summary" : " Manages SSSD" ,
6
6
"license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change 1
1
<%- |
2
2
String $domain,
3
- Simplib::Host $krb5_server ,
3
+ Optional[ Simplib::Host] $krb5_server = undef ,
4
4
String $krb5_realm,
5
5
Optional[Sssd::DebugLevel] $debug_level = undef,
6
6
Boolean $debug_timestamps = true,
@@ -24,7 +24,9 @@ debug_level = <%= $debug_level %>
24
24
<% } -%>
25
25
debug_timestamps = <%= $debug_timestamps %>
26
26
debug_microseconds = <%= $debug_microseconds %>
27
+ <% if $krb5_server { -%>
27
28
krb5_server = <%= $krb5_server %>
29
+ <% } -%>
28
30
krb5_realm = <%= $krb5_realm %>
29
31
<% if $krb5_kpasswd { -%>
30
32
krb5_kpasswd = <%= $krb5_kpasswd %>
You can’t perform that action at this time.
0 commit comments