10 lines
161 B
YAML
10 lines
161 B
YAML
---
|
|
- name: Register NGINX config
|
|
command: nginx -T
|
|
changed_when: false
|
|
register: config
|
|
|
|
- name: Print NGINX config
|
|
debug:
|
|
var: config.stdout_lines
|