Skip to content

Commit 6d4fbac

Browse files
fix allowed_uids parameter in ifp template (#159)
* fix allowed_uids parameter in ifp template * Bump version --------- Co-authored-by: Steven Pritchard <[email protected]>
1 parent f2f0a13 commit 6d4fbac

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* Mon Sep 22 2025 Patrick Brideau <[email protected]> - 7.13.0
2+
- Fix allowed_uids parameter in ifp template
3+
4+
* Mon Sep 22 2025 Paul Edmon <[email protected]> - 7.13.0
5+
- Add `sssd::domain::custom_options`
6+
17
* Mon Nov 18 2024 dpavlotzky <[email protected]> - 7.12.0
28
- Add "ad" option to autofs_provider list (#147)
39

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simp-sssd",
3-
"version": "7.12.0",
3+
"version": "7.13.0",
44
"author": "SIMP Team",
55
"summary": "Manages SSSD",
66
"license": "Apache-2.0",

spec/classes/service/ifp_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
[ifp]
3232
debug_timestamps = true
3333
debug_microseconds = false
34-
allow_uids = me, you
34+
allowed_uids = me, you
3535
user_attributes = x, y, z
3636
wildcard_limit = 5
3737
EXPECTED

templates/service/ifp.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ debug_level = <%= @debug_level %>
99
debug_timestamps = <%= @debug_timestamps.to_s %>
1010
debug_microseconds = <%= @debug_microseconds.to_s %>
1111
<% if @allowed_uids -%>
12-
allow_uids = <%= @allowed_uids.join(', ') %>
12+
allowed_uids = <%= @allowed_uids.join(', ') %>
1313
<% end -%>
1414
<% if @user_attributes -%>
1515
user_attributes = <%= @user_attributes.join(', ') %>

0 commit comments

Comments
 (0)