ansible-role-nginx/tasks/config/debug-output.yml

10 lines
161 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
2020-09-19 17:32:17 +02:00
- name: Register NGINX config
command: nginx -T
2020-09-15 21:27:06 +02:00
changed_when: false
register: config
2020-09-19 17:32:17 +02:00
- name: Print NGINX config
2020-09-15 21:27:06 +02:00
debug:
var: config.stdout_lines