This commit is contained in:
root
2020-12-01 10:55:37 +01:00
parent 3300d8303e
commit 8845778c83
4 changed files with 30 additions and 5 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ raspis:
debian10:
hosts:
puppet.realm.local:
admcenter.realm.local:
ansible_ssh_host: 192.168.0.99
ansible_python_interpreter: /usr/bin/python3
@@ -20,4 +20,4 @@ debian9:
ansible_ssh_host: 62.75.247.110
ansible_ssh_user: caelebfi
ansible_ssh_rivate_key_file: /root/.ssh/id_ed25519
ansible_python_interpreter: /usr/bin/python3
ansible_python_interpreter: /usr/bin/python3
+7
View File
@@ -0,0 +1,7 @@
$ANSIBLE_VAULT;1.1;AES256
62633633333261353538316434616135643231363336646637343738383034376564643639336163
3939386139646632333261363065623236303665366466640a333634393762646264386238393466
63393332386432303437383938323666343065626635303731313832623330636663303432303134
3161653062633866630a663463636336386431343964643433636665633932633666313130383164
32663466656636363361626161336137363431376361646432306532616165373863363564333665
3735363136333436653738383433666333373432663038383837
+3 -3
View File
@@ -1,15 +1,15 @@
---
- name: pihole
hosts: 192.168.0.123
hosts: serviceraspi.realm.local
strategy: free
become: true
gather_facts: yes
vars:
pihole_setupvars_ipv4_address: 192.168.0.123
pihole_setupvars_ipv4_address: 192.168.0.28
pihole_setupvars_webpassword: 88499d758f251e238ac18b7f404eec04f45a607ebeff019909a119f44c84ccfb
pihole_setupvars_pihole_dns_1: 9.9.9.9
pihole_setupvars_pihole_dns_2: 149.112.112.112
pihole_setupvars_lighttpd_enabled: false
roles:
- zfuller.pihole
+18
View File
@@ -0,0 +1,18 @@
---
- hosts: all
become: true
tasks:
- name: update apt cache
apt:
update_cache: yes
- name: upgrade all packages
apt:
name: "*"
state: latest
- name: upgrade OS (dist-upgrade)
apt:
upgrade: dist