From 89425d9ce4ea520d29ffa890504ff40e02b977ff Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Tue, 8 Apr 2025 15:06:07 +0200 Subject: [PATCH] NETWORK section is optional --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index ec09f67..d723de2 100755 --- a/install.py +++ b/install.py @@ -560,7 +560,7 @@ def handle_config(): to_start = {} ifname = '' try: - netcfg = config['NETWORK'] + netcfg = config.get('NETWORK', {}) for name in netcfg: if name not in box.network_interfaces: print(f'{name} is not a valid network interface name')