Skip to content

Commit 347d6f4

Browse files
committed
Update README.md
1 parent 2641ddc commit 347d6f4

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ You need to configure at least one domain for SSSD to start up so the bare
3232
minimum would be:
3333

3434
```puppet
35-
include ::sssd
36-
::sssd::domain { 'example.com':
35+
include sssd
36+
sssd::domain { 'example.com':
3737
id_provider => 'ldap',
3838
...
3939
}
@@ -44,7 +44,7 @@ include ::sssd
4444
Configure SSSD to use LDAP for NSS:
4545

4646
```puppet
47-
class { '::sssd':
47+
class { 'sssd':
4848
domains => {
4949
'example.com' => {
5050
'id_provider' => 'ldap',
@@ -62,22 +62,22 @@ class { '::sssd':
6262
},
6363
}
6464
65-
class { '::nsswitch':
65+
class { 'nsswitch':
6666
passwd => ['files', 'sss'],
6767
shadow => ['files', 'sss'],
6868
group => ['files', 'sss'],
6969
}
7070
71-
Class['::sssd'] -> Class['::nsswitch']
71+
Class['sssd'] -> Class['nsswitch']
7272
```
7373

7474
Extend the above example to also make the SSSD data available over D-Bus:
7575

7676
```puppet
77-
include ::dbus
78-
include ::sssd
79-
::sssd::service { 'nss': }
80-
::sssd::domain { 'example.com':
77+
include dbus
78+
include sssd
79+
sssd::service { 'nss': }
80+
sssd::domain { 'example.com':
8181
id_provider => 'ldap',
8282
ldap_schema => 'rfc2307',
8383
ldap_uri => ['ldap://192.0.2.1'],
@@ -87,15 +87,15 @@ include ::sssd
8787
ldap_default_bind_dn => 'cn=Manager,dc=example,dc=com',
8888
ldap_default_authtok => 'secret',
8989
}
90-
include ::sssd::dbus
90+
include sssd::dbus
9191
92-
class { '::nsswitch':
92+
class { 'nsswitch':
9393
passwd => ['files', 'sss'],
9494
shadow => ['files', 'sss'],
9595
group => ['files', 'sss'],
9696
}
9797
98-
Class['::sssd'] -> Class['::nsswitch']
98+
Class['sssd'] -> Class['nsswitch']
9999
```
100100

101101
## Reference
@@ -104,7 +104,7 @@ The reference documentation is generated with
104104
[puppet-strings](https://github.com/puppetlabs/puppet-strings) and the latest
105105
version of the documentation is hosted at
106106
[https://bodgit.github.io/puppet-sssd/](https://bodgit.github.io/puppet-sssd/)
107-
and available also in the [REFERENCE.md](https://github.com/bodgit/puppet-postfix/blob/main/REFERENCE.md).
107+
and available also in the [REFERENCE.md](https://github.com/bodgit/puppet-sssd/blob/main/REFERENCE.md).
108108

109109
## Limitations
110110

0 commit comments

Comments
 (0)