neoloc/lxd_hosts #223

Merged
unkinben merged 2 commits from neoloc/lxd_hosts into develop 2025-03-29 19:40:02 +11:00
6 changed files with 54 additions and 1 deletions

View File

@ -0,0 +1,10 @@
---
networking::interfaces:
enp2s0:
ipaddress: 198.18.15.9
enp3s0:
ipaddress: 10.18.15.9
mtu: 9000
networking::routes:
default:
gateway: 198.18.15.254

View File

@ -0,0 +1,10 @@
---
networking::interfaces:
enp2s0:
ipaddress: 198.18.15.10
enp3s0:
ipaddress: 10.18.15.10
mtu: 9000
networking::routes:
default:
gateway: 198.18.15.254

View File

@ -0,0 +1,10 @@
---
networking::interfaces:
enp2s0:
ipaddress: 198.18.15.11
enp3s0:
ipaddress: 10.18.15.11
mtu: 9000
networking::routes:
default:
gateway: 198.18.15.254

View File

@ -0,0 +1,10 @@
---
networking::interfaces:
enp2s0:
ipaddress: 198.18.15.12
enp3s0:
ipaddress: 10.18.15.12
mtu: 9000
networking::routes:
default:
gateway: 198.18.15.254

View File

@ -0,0 +1,10 @@
---
networking::interfaces:
enp2s0:
ipaddress: 198.18.15.13
enp3s0:
ipaddress: 10.18.15.13
mtu: 9000
networking::routes:
default:
gateway: 198.18.15.254

View File

@ -29,7 +29,10 @@ class networking (
# determine which networking service to restart
$restart_command = $facts['os']['family'] ? {
'RedHat' => '/usr/bin/systemctl restart network',
'RedHat' => $facts['os']['release']['major'] ? {
'8' => '/usr/bin/systemctl restart network',
'9' => '/usr/bin/systemctl restart NetworkManager',
},
'Debian' => '/usr/bin/systemctl restart networking',
default => fail('Unsupported OS in networking-restart-command'),
}