Skip to content

Commit

Permalink
make work with ansible 2.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Kahest committed Jan 31, 2017
1 parent bf16aec commit 8bab996
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
@@ -1,7 +1,7 @@
---
- name: install bind packages
apt: pkg={{ item }} state={{ bind_pkg_state }}
with_items: bind_pkgs
with_items: "{{ bind_pkgs }}"

- name: setup zone directories
file: dest={{ bind_base_zones_path }}/{{ item }} state=directory owner={{ bind_user }} group={{ bind_group }} mode=0755
Expand All @@ -27,7 +27,7 @@

- name: Copy master zone files
copy: src={{ bind_masterzones_path }}/db.{{ item.name }} dest={{ bind_base_zones_path }}/{{bind_masterzones_path}} owner={{ bind_user }} group={{ bind_group }}
with_items: bind_config_master_zones
with_items: "{{ bind_config_master_zones }}"
notify: reload bind
tags: bind-zones

Expand Down

0 comments on commit 8bab996

Please sign in to comment.