summaryrefslogtreecommitdiff
path: root/roles/unix_users/subplot.md
blob: 049bfc24e2d80c6303ec4e6481332e328ceda71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# unix_users – manage Unix users

This role creates or updates Unix users.

## Create user with unix_users

~~~scenario
given a host running Debian
when I use role unix_users
and I use variables from foo.yml
and I run the playbook
then the host has user foo
~~~

~~~{#foo.yml .file .yaml}
unix_users:
- username: foo
  comment: Foo Bar
~~~