feat: add ubuntu 25.04

This commit is contained in:
AJ Schroeder
2025-06-28 08:13:45 -05:00
parent a82154931d
commit 853b754428
12 changed files with 893 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
network:
network:
version: 2
ethernets:
%{ if ip != null ~}
${device}:
dhcp4: false
addresses:
- ${ip}/${netmask}
gateway4: ${gateway}
nameservers:
addresses:
%{ for item in dns ~}
- ${item}
%{ endfor ~}
%{ else ~}
${device}:
dhcp4: true
%{ endif ~}