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
|
||||
register: ynh_installed_apps_raw
|
||||
changed_when: False
|
||||
check_mode: False
|
||||
tags: apps
|
||||
|
||||
- name: Format json of apps
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"yunohost settings get smtp.relay.{{ item.key }}"
|
||||
register: _ynh_smtp_current_values
|
||||
changed_when: false
|
||||
check_mode: false
|
||||
tags:
|
||||
- yunohost
|
||||
- smtp
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
ansible.builtin.command: yunohost domain list --output-as json
|
||||
register: ynh_installed_domains_raw
|
||||
changed_when: False
|
||||
check_mode: False
|
||||
tags:
|
||||
- yunohost
|
||||
- domains
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
ansible.builtin.command: yunohost user list --output-as json
|
||||
register: ynh_registered_users_raw
|
||||
changed_when: False
|
||||
check_mode: False
|
||||
tags:
|
||||
- yunohost
|
||||
- users
|
||||
|
|
Loading…
Reference in a new issue