Skip to content

Commit 90f515f

Browse files
committed
docs: Fix "beginning with accounts" terminology in the README
Prior to this, the very first example of how to use this module used the wrong terminology and had an incorrect explanation of what the example was doing. 1) `accounts::user` is a defined type; it's not a class. 2) The users being created are not `Dan` and `Morgan`; they are `dan` and `morgan` 3) I tried to clarify that the `accounts::user` define doesn't have to be used in a Puppet-managed node's manifest, just that the example being shown chose to put it there.
1 parent 219493d commit 90f515f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This module works on many UNIX/Linux operating systems. It does not support conf
2525

2626
### Beginning with accounts
2727

28-
Declare the `accounts` class in a Puppet-managed node's manifest:
28+
Declare the `accounts::user` defined type for each local user you want to manage:
2929

3030
~~~puppet
3131
node default {
@@ -34,7 +34,7 @@ node default {
3434
}
3535
~~~
3636

37-
The above example creates accounts, home directories, and groups for Dan and Morgan.
37+
The above example creates accounts, home directories, and groups for `dan` and `morgan` in the default node group.
3838

3939
## Usage
4040

0 commit comments

Comments
 (0)