b76b876750
refactor: changed variables pattern to be more consistent with ansible good practises and more flexible to use. refactor: remove useless comment doc: Readme in English and French
13 lines
473 B
YAML
13 lines
473 B
YAML
---
|
|
- name: List currently installed domains
|
|
ansible.builtin.shell: yunohost domain list --output-as json
|
|
register: ynh_installed_domains_raw
|
|
changed_when: False
|
|
|
|
- name: Format json of domains
|
|
ansible.builtin.set_fact: ynh_installed_domains="{{ ynh_installed_domains_raw.stdout | from_json }}"
|
|
|
|
- name: Create domains
|
|
ansible.builtin.shell: yunohost domain add {{ item }}
|
|
with_items: "{{ ynh_extra_domains }}"
|
|
when: item not in ynh_installed_domains.domains
|