2020-10-08 16:33:19 -05:00
|
|
|
---
|
2022-11-20 20:03:01 -06:00
|
|
|
|
2021-12-19 21:32:19 -06:00
|
|
|
- name: Clone pi-hole
|
2020-10-08 16:33:19 -05:00
|
|
|
become: yes
|
2021-12-19 21:32:19 -06:00
|
|
|
git:
|
|
|
|
accept_newhostkey: yes
|
|
|
|
dest: /opt/pi-hole
|
|
|
|
repo: https://github.com/pi-hole/pi-hole.git
|
|
|
|
|
|
|
|
- name: Install pi-hole if needed
|
|
|
|
become: yes
|
2022-03-25 06:08:12 -05:00
|
|
|
register: pihole_install
|
2022-11-20 20:03:01 -06:00
|
|
|
command:
|
2021-12-19 21:32:19 -06:00
|
|
|
creates: /usr/bin/pihole-FTL
|
2022-03-25 06:08:12 -05:00
|
|
|
cmd: false # bash basic-install.sh
|
2021-12-19 21:32:19 -06:00
|
|
|
chdir: '/opt/pi-hole/automated install'
|
|
|
|
|
2022-03-25 06:08:12 -05:00
|
|
|
- name: Ensure pihole web admin password
|
|
|
|
become: yes
|
|
|
|
command: "pihole -a -p {{ passwords['Nazara'] }}"
|
|
|
|
# when: pihole_install.changed
|
|
|
|
|
2021-12-19 21:32:19 -06:00
|
|
|
- name: Generate DNS/DHCP from inventory
|
|
|
|
delegate_to: localhost
|
|
|
|
run_once: true
|
|
|
|
command: "python3 ../bin/generate-pihole-dns-dhcp.py {{ inventory_file }}"
|
|
|
|
|
|
|
|
- name: Nazara DNS
|
|
|
|
become: yes
|
|
|
|
register: dns_updated
|
|
|
|
copy:
|
|
|
|
dest: /etc/pihole/custom.list
|
2022-11-20 20:03:01 -06:00
|
|
|
src: dns
|
2021-12-19 21:32:19 -06:00
|
|
|
owner: pihole
|
|
|
|
group: pihole
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
- name: Nazara DHCP
|
|
|
|
become: yes
|
|
|
|
register: dhcp_updated
|
|
|
|
copy:
|
|
|
|
src: dhcp
|
|
|
|
dest: /etc/dnsmasq.d/04-pihole-static-dhcp.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
|
2022-03-25 06:08:12 -05:00
|
|
|
- name: Nazara Configuration
|
|
|
|
become: yes
|
|
|
|
register: conf_updated
|
|
|
|
copy:
|
|
|
|
src: pihole-FTL.conf
|
|
|
|
dest: /etc/pihole/pihole-FTL.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
|
|
|
|
- name: Nazara DHCP Leases dir
|
|
|
|
become: yes
|
|
|
|
file:
|
|
|
|
path: /var/lib/misc/
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0777
|
|
|
|
|
|
|
|
- name: Nazara DHCP Leases
|
|
|
|
become: yes
|
|
|
|
file:
|
|
|
|
path: /var/lib/misc/dnsmasq.leases
|
|
|
|
state: touch
|
|
|
|
owner: pihole
|
|
|
|
group: pihole
|
|
|
|
mode: 0660
|
|
|
|
|
2021-12-19 21:32:19 -06:00
|
|
|
- name: Reload services
|
|
|
|
become: yes
|
|
|
|
command: pihole restartdns
|
2022-03-25 06:08:12 -05:00
|
|
|
when: dns_updated.changed or dhcp_updated.changed or conf_updated.changed
|