1
0
Fork 0
ynh-lydra-ansible-yunohost/tasks/users.yml

19 lines
590 B
YAML
Raw Normal View History

2017-09-17 21:25:30 +02:00
---
- name: List users
shell: yunohost user list --output-as json
register: yunohost_registered_users_raw
changed_when: False
- name: Format json of users
set_fact: yunohost_registered_users="{{ yunohost_registered_users_raw.stdout | from_json }}"
- name: Create missing users
shell: |
yunohost user create {{ item.name }} --admin-password {{ yunohost.password }} \
-f {{ item.firstname }} \
-l {{ item.lastname }} \
-m {{ item.mail }} \
-p {{ item.pass }}
with_items: "{{ yunohost.users }}"
when: item.name not in yunohost_registered_users.users.keys()