From a7c46b7c77edacaaa7fa683011014d8c93862ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de> Date: Wed, 25 Aug 2021 12:19:40 +0200 Subject: [PATCH] feat: make Gateway and Netmask configurable using vars/network.yml --- templates/kickstart.cfg.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/kickstart.cfg.j2 b/templates/kickstart.cfg.j2 index c73c7b6..7b5f896 100644 --- a/templates/kickstart.cfg.j2 +++ b/templates/kickstart.cfg.j2 @@ -14,7 +14,7 @@ keyboard --vckeymap=de-nodeadkeys --xlayouts='de (nodeadkeys)' lang de_DE.UTF-8 # Network information -network --bootproto=static --device=ens192 --ethtool="autoneg on" --gateway=212.201.61.1 --ip={{ item.ip_address }} --nameserver=194.95.142.157,194.95.142.203,194.95.142.200 --netmask=255.255.255.192 --ipv6=auto --activate +network --bootproto=static --device=ens192 --ethtool="autoneg on" --gateway={{ item.gateway }} --ip={{ item.ip_address }} --nameserver=194.95.142.157,194.95.142.203,194.95.142.200 --netmask={{ item.netmask }} --ipv6=auto --activate network --hostname={{ item.hostname }}.slub-dresden.de repo --name="Server-HighAvailability" --baseurl=file:///run/install/repo/addons/HighAvailability -- GitLab