Pi-hole - set IP for eth0 and update

This commit is contained in:
unman 2022-08-05 12:18:39 +00:00
parent 6c61d79ac5
commit 4f7f14de12
No known key found for this signature in database
GPG Key ID: FDD1B8244731B36C
3 changed files with 58 additions and 0 deletions

5
pihole/eth0 Normal file
View File

@ -0,0 +1,5 @@
auto eth0
iface eth0 inet static
address
netmask 255.0.0.0
gateway

48
pihole/install.sls Normal file
View File

@ -0,0 +1,48 @@
# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
#
{% if grains['nodename'] != 'dom0' %}
/etc/apt/sources.list:
file.replace:
- names:
- /etc/apt/sources.list
- /etc/apt/sources.list.d/qubes-r4.list
- pattern: 'http://HTTPS///'
- repl: 'https://'
- flags: [ 'IGNORECASE', 'MULTILINE' ]
{% set IP = salt['cmd.shell']('qubesdb-read /qubes-ip') %}
{% set GW = salt['cmd.shell']('qubesdb-read /qubes-gateway') %}
/etc/network/interfaces.d/eth0:
file.managed:
- source:
- salt://pihole/eth0
- user: root
- group: root
- makedirs: True
set_ip:
file.line:
- name: /etc/network/interfaces.d/eth0
- match: address
- mode: replace
- content: "address {{IP}}"
set_gw:
file.line:
- name: /etc/network/interfaces.d/eth0
- match: gateway
- mode: replace
- content: "gateway {{GW}}"
'systemctl restart networking':
cmd.run:
- runas: root
Pihole_update:
pkg.uptodate:
- refresh: True
{% endif %}

5
pihole/install.top Normal file
View File

@ -0,0 +1,5 @@
# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
base:
sys-pihole:
- pihole.install