Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "ad" option to autofs_provider list #148

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
* Mon Nov 18 2024 dpavlotzky <david@pavlotzky.nl> - 7.12.0
- Add "ad" option to autofs_provider list (#147)

* Mon Nov 18 2024 G. Ryan Sablosky <sabo@users.noreply.github.com> - 7.12.0
- Make LDAP client-side TLS authentication optional (#137)

* Fri Sep 13 2024 Steven Pritchard <steve@sicura.us> - 7.11.0
- [puppetsync] Update module dependencies to support simp-iptables 7.x

Expand Down
11 changes: 10 additions & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,7 @@ Default value: `undef`

##### <a name="-sssd--domain--autofs_provider"></a>`autofs_provider`

Data type: `Optional[Enum['ldap', 'ipa','none']]`
Data type: `Optional[Enum['ad', 'ldap', 'ipa','none']]`



Expand Down Expand Up @@ -2753,6 +2753,7 @@ The following parameters are available in the `sssd::provider::ldap` defined typ

* [`name`](#-sssd--provider--ldap--name)
* [`strip_128_bit_ciphers`](#-sssd--provider--ldap--strip_128_bit_ciphers)
* [`client_tls`](#-sssd--provider--ldap--client_tls)
* [`debug_level`](#-sssd--provider--ldap--debug_level)
* [`debug_timestamps`](#-sssd--provider--ldap--debug_timestamps)
* [`debug_microseconds`](#-sssd--provider--ldap--debug_microseconds)
Expand Down Expand Up @@ -2913,6 +2914,14 @@ Data type: `Boolean`

Default value: `true`

##### <a name="-sssd--provider--ldap--client_tls"></a>`client_tls`

Data type: `Boolean`

Set to false to disable setting up client-side TLS

Default value: `true`

##### <a name="-sssd--provider--ldap--debug_level"></a>`debug_level`

Data type: `Optional[Sssd::DebugLevel]`
Expand Down
2 changes: 1 addition & 1 deletion manifests/domain.pp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
Optional[Enum['ldap', 'ipa','ad','none']] $sudo_provider = undef,
Optional[Enum['ipa', 'none']] $selinux_provider = undef,
Optional[Enum['ipa', 'ad','none']] $subdomains_provider = undef,
Optional[Enum['ldap', 'ipa','none']] $autofs_provider = undef,
Optional[Enum['ad', 'ldap', 'ipa','none']] $autofs_provider = undef,
Optional[Enum['ipa', 'none']] $hostid_provider = undef,
Optional[String] $re_expression = undef,
Optional[String] $full_name_format = undef,
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.11.0",
"version": "7.12.0",
"author": "SIMP Team",
"summary": "Manages SSSD",
"license": "Apache-2.0",
Expand Down
Loading