Skip to content

Commit

Permalink
Merge pull request #1 from fullcontact/amal/ansible-updates
Browse files Browse the repository at this point in the history
Update main.yml
  • Loading branch information
amal-v authored Feb 12, 2020
2 parents a2146ee + 47880e2 commit a352267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

- name: 'Build up the frontends'
template: src=frontend.cfg dest=/etc/haproxy/frontends.d/{{ item.name }}.cfg
with_items: haproxy_frontends
with_items: " {{ haproxy_frontends }} "
when: haproxy_frontends is defined

- name: 'Create directory for the backends'
Expand All @@ -24,7 +24,7 @@

- name: 'Build up the backends'
template: src=backend.cfg dest=/etc/haproxy/backends.d/{{ item.name }}.cfg
with_items: haproxy_backends
with_items: " {{ haproxy_backends }} "
when: haproxy_backends is defined

- name: 'Create the compiled folder'
Expand Down

0 comments on commit a352267

Please sign in to comment.