ansible-role-nginx/tasks/config/debug-output.yml
2021-06-02 17:47:44 +02:00

13 lines
279 B
YAML

---
- name: Register NGINX config
command: nginx -T
ignore_errors: "{{ ansible_check_mode }}"
check_mode: false
changed_when: false
register: config_full
- name: Print NGINX config
debug:
var: config_full.stdout_lines
when: config_full.stdout_lines is defined