feat: initial oracle linux support

This commit is contained in:
AJ Schroeder
2024-07-12 17:55:36 -05:00
parent bfe195a212
commit faaec3048e
16 changed files with 1658 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
%{ if ip != null ~}
network --device=${device} --bootproto=static --ip=${ip} --netmask=${cidrnetmask("${ip}/${netmask}")} --gateway=${gateway} --nameserver=${join(",", dns)}
%{ else ~}
network --device=${device} --bootproto=dhcp
%{ endif ~}