# unix_users – manage Unix users This role creates or updates Unix users. ## Create user with unix_users ~~~scenario given a host running Debian then the host has no user foo 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 ~~~