src.nth.io/

summaryrefslogtreecommitdiff
path: root/pihole/tasks/main.yaml
blob: 028d54490075a41a5ad4941a4214ba475ff4c8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---

- name: install custom DNS names
  become: yes
  copy:
    src: "{{pihole_custom_dns_list}}"
    dest: "/etc/pihole/custom.list"
    mode: "0644"
  notify: restart pihole-ftl

- name: update pihole
  command: "pihole -up"
  changed_when: false