Remove legacy vhosts.conf file

This commit is contained in:
Oskar Schöldström 2017-04-22 10:03:18 -05:00
parent 9cf49ac6c2
commit 0d931c53c3
1 changed files with 6 additions and 0 deletions

View File

@ -31,3 +31,9 @@
when: item.state|default('present') == 'absent'
with_items: "{{ nginx_vhosts }}"
notify: reload nginx
- name: Remove legacy vhosts.conf file.
file:
path: "{{ nginx_vhost_path }}/vhosts.conf"
state: absent
notify: reload nginx