2017-09-17 21:25:30 +02:00
|
|
|
---
|
2021-10-19 10:29:57 +02:00
|
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
# ansible-yunohost allows to deploy Yunohost using Ansible #
|
2022-01-27 11:55:40 +01:00
|
|
|
# Copyright 2021-present Lydra https://www.lydra.fr/ #
|
2021-10-19 10:29:57 +02:00
|
|
|
# #
|
|
|
|
# this program is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
|
|
# (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
# this program is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
|
|
# #
|
|
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
|
2017-09-17 21:25:30 +02:00
|
|
|
- name: List users
|
2021-10-12 16:00:56 +02:00
|
|
|
ansible.builtin.command: yunohost user list --output-as json
|
2021-10-12 14:27:37 +02:00
|
|
|
register: ynh_registered_users_raw
|
2017-09-17 21:25:30 +02:00
|
|
|
changed_when: False
|
2022-01-27 11:55:40 +01:00
|
|
|
tags:
|
|
|
|
- yunohost
|
|
|
|
- users
|
2017-09-17 21:25:30 +02:00
|
|
|
|
|
|
|
- name: Format json of users
|
2021-10-12 14:27:37 +02:00
|
|
|
ansible.builtin.set_fact: ynh_registered_users="{{ ynh_registered_users_raw.stdout | from_json }}"
|
2022-01-27 11:55:40 +01:00
|
|
|
tags:
|
|
|
|
- yunohost
|
|
|
|
- users
|
2017-09-17 21:25:30 +02:00
|
|
|
|
2021-10-12 14:27:37 +02:00
|
|
|
- name: Create missing Yunohost users
|
2021-10-12 16:00:56 +02:00
|
|
|
ansible.builtin.command:
|
|
|
|
yunohost user create "{{ item.name }}" \
|
|
|
|
-f "{{ item.firstname }}" \
|
|
|
|
-l "{{ item.lastname }}" \
|
|
|
|
-d "{{ item.mail_domain }}" \
|
|
|
|
-p "{{ item.pass }}"
|
2021-10-12 14:27:37 +02:00
|
|
|
loop: "{{ ynh_users }}"
|
|
|
|
when: item.name not in ynh_registered_users.users.keys()
|
2022-01-27 11:55:40 +01:00
|
|
|
tags:
|
|
|
|
- yunohost
|
|
|
|
- users
|