cpanel-reconfigure/main.ansible.yml
2023-12-30 13:09:37 +11:00

20 lines
No EOL
471 B
YAML

---
- name: install and configure pihole and dns over tls
hosts: pihole
vars:
become: false
pre_tasks:
- name: Load variables
ansible.builtin.include_vars: '{{ item }}'
with_first_found:
- "vars/default.yml"
tasks:
- name: install required dependencies
ansible.builtin.apt:
pkg:
- python3
- python3-pip
- libaugeas0
- nginx
- libnginx-mod-stream
state: present