ansible-labs/040.Handlers/solution/solution.yml

9 lines
170 B
YAML
Raw Normal View History

2018-08-01 12:12:26 +02:00
- hosts: lab
gather_facts: false
tasks:
- include_tasks: tasks/install_nginx.yml
handlers:
- import_tasks: tasks/restart_nginx.yml
# vim: set ft=yaml sw=2 et: