support ansible check mode
This commit is contained in:
parent
8554279b42
commit
1e63f6c1e1
4 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
||||||
ansible.builtin.command: yunohost app map --output-as json
|
ansible.builtin.command: yunohost app map --output-as json
|
||||||
register: ynh_installed_apps_raw
|
register: ynh_installed_apps_raw
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
check_mode: False
|
||||||
tags: apps
|
tags: apps
|
||||||
|
|
||||||
- name: Format json of apps
|
- name: Format json of apps
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"yunohost settings get smtp.relay.{{ item.key }}"
|
"yunohost settings get smtp.relay.{{ item.key }}"
|
||||||
register: _ynh_smtp_current_values
|
register: _ynh_smtp_current_values
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
check_mode: false
|
||||||
tags:
|
tags:
|
||||||
- yunohost
|
- yunohost
|
||||||
- smtp
|
- smtp
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
ansible.builtin.command: yunohost domain list --output-as json
|
ansible.builtin.command: yunohost domain list --output-as json
|
||||||
register: ynh_installed_domains_raw
|
register: ynh_installed_domains_raw
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
check_mode: False
|
||||||
tags:
|
tags:
|
||||||
- yunohost
|
- yunohost
|
||||||
- domains
|
- domains
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
ansible.builtin.command: yunohost user list --output-as json
|
ansible.builtin.command: yunohost user list --output-as json
|
||||||
register: ynh_registered_users_raw
|
register: ynh_registered_users_raw
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
check_mode: False
|
||||||
tags:
|
tags:
|
||||||
- yunohost
|
- yunohost
|
||||||
- users
|
- users
|
||||||
|
|
Loading…
Reference in a new issue