aboutsummaryrefslogtreecommitdiff
path: root/roles/bind/tasks/download_zonefile.yml
blob: 9e895071f4153be63fe94fc82e2967b0496c1bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Download zonefile
  uri:
    url: '{{ bind_zonefile_base_url }}/{{ item }}'
    return_content: yes
  delegate_to: localhost
  register: zonefile

- name: Install zonefile
  copy:
    dest: '/etc/bind/zonefiles/{{ item }}'
    content: '{{ zonefile.content }}'
  become: yes
  notify: Restart bind