Skip to content
Open
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: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This role was developed to manage users, groups, teams, extra user information a
## How
### Simple Mode

You define your user in a variable *usermanage_usersdb*. You can define that differnetly per host our group.
You define your user in a variable *usermanage_usersdb*. You can define that differently per host our group.

```yaml
usermanage_usersdb:
Expand Down Expand Up @@ -40,7 +40,7 @@ Basically **usermanage_usersdb** is a dictionary of users each user will accept
A special argument **keys** which is a list of keys that will be created for that user, each key can accept all options defined in [authorized key module](http://docs.ansible.com/authorized_key_module.html)

### Group Management
To manage groups you can define **usermanage_groupsdb** as a **list**. You must define atleast the *name* of group and optional state,gid and system.
To manage groups you can define **usermanage_groupsdb** as a **list**. You must define at least the *name* of group and optional state, gid and system.

```yaml
usermanage_groupsdb :
Expand All @@ -60,7 +60,7 @@ usermanage_groupsdb :
state : "absent"
```

Some *nix system does not support creating the primary group for each user with the same name. If you want to enable that functionality for systems that does not support it. just enable that flag.
Some *nix system does not support creating the primary group for each user with the same name. If you want to enable that functionality for systems that do not support it, just enable that flag.
```yaml
usermanage_create_per_user_group : true
```
Expand Down