Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
dest: /etc/sssd/sssd.conf
section: pam
option: pam_cert_auth
value: 'true'
value: 'True'
create: yes
mode: 0600

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# complexity = low
# disruption = medium

{{{ bash_ensure_ini_config("/etc/sssd/sssd.conf", "pam", "pam_cert_auth", "true") }}}
{{{ bash_ensure_ini_config("/etc/sssd/sssd.conf", "pam", "pam_cert_auth", "True") }}}

{{% if product in ["ol8", "rhel8"] %}}
if [ -f /usr/bin/authselect ]; then
Expand Down
8 changes: 4 additions & 4 deletions linux_os/guide/services/sssd/sssd_enable_smartcards/rule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ title: 'Enable Smartcards in SSSD'
description: |-
SSSD should be configured to authenticate access to the system
using smart cards. To enable smart cards in SSSD, set <tt>pam_cert_auth</tt>
to <tt>true</tt> under the <tt>[pam]</tt>
to <tt>True</tt> under the <tt>[pam]</tt>
section in <tt>/etc/sssd/sssd.conf</tt>. For example:
<pre>[pam]
pam_cert_auth = true
pam_cert_auth = True
</pre>
{{% if product in ["ol8", "rhel8"] %}}
Add or update "pam_sss.so" with "try_cert_auth" or "require_cert_auth" in the
Expand Down Expand Up @@ -58,7 +58,7 @@ ocil: |-
To verify that smart cards are enabled in SSSD, run the following command:
<pre>$ sudo grep pam_cert_auth /etc/sssd/sssd.conf</pre>
If configured properly, output should be
<pre>pam_cert_auth = true</pre>
<pre>pam_cert_auth = True</pre>

{{% if product in ["ol8", "rhel8"] %}}
<pre>$ sudo grep cert_auth /etc/sssd/sssd.conf /etc/pam.d/*</pre>
Expand All @@ -68,7 +68,7 @@ ocil: |-
fixtext: |-
Edit the file "/etc/sssd/sssd.conf" and add or edit the following line:

pam_cert_auth = true
pam_cert_auth = True

{{% if product in ["ol8", "rhel8"] %}}
Add or update "pam_sss.so" with "try_cert_auth" or "require_cert_auth" in the
Expand Down