Rename role evolinux-admin_users → admin-users

This commit is contained in:
Jérémy Lecour 2016-12-22 15:34:23 +01:00 committed by Jérémy Lecour
parent 2835521dbf
commit b7be16e44b
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
# evolinux-admin-users
# admin-users
Creates admin users accounts, based on a configuration data structure.
@ -8,10 +8,10 @@ Everything is in the `tasks/main.yml` file.
## Available variables
The variable `evolinux_admin_users` must be a "hash" of one or more users :
The variable `admin_users` must be a "hash" of one or more users :
```
evolinux_admin_users:
admin_users:
- name: foo
uid: 1001
fullname: 'Mr Foo'

View file

@ -0,0 +1,2 @@
---
admin_users: []

View file

@ -1,7 +1,7 @@
---
- include: adduser_debian.yml user={{ item }}
with_items: "{{ evolinux_admin_users }}"
with_items: "{{ admin_users }}"
when: ansible_distribution == "Debian"
# - include: openbsd.yml

View file

@ -1,2 +0,0 @@
---
evolinux_admin_users: []