From 56d64b08b24783ec52de0897ab9ac4c0d49a6803 Mon Sep 17 00:00:00 2001 From: codeking Date: Tue, 13 Jan 2026 22:29:44 +0100 Subject: [PATCH] Improve connection management-related logic --- core/controllers/ConnectionController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/controllers/ConnectionController.py b/core/controllers/ConnectionController.py index 3cb9044..60345f2 100644 --- a/core/controllers/ConnectionController.py +++ b/core/controllers/ConnectionController.py @@ -399,7 +399,7 @@ class ConnectionController: raise ConnectionError('The connection could not be established.') if ipv6_method in ('disabled', 'ignore'): - subprocess.run(('nmcli', 'connection', 'add', 'type', 'dummy', 'save', 'no', 'con-name', 'hv-ipv6-sink', 'ifname', 'hvipv6sink0', 'ipv6.addresses', 'fd7a:fd4b:54e3:077c::/64', 'ipv6.gateway', 'fd7a:fd4b:54e3:077c::1', 'ipv6.route-metric', '72'), stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + subprocess.run(('nmcli', 'connection', 'add', 'type', 'dummy', 'save', 'no', 'con-name', 'hv-ipv6-sink', 'ifname', 'hvipv6sink0', 'ipv6.method', 'manual', 'ipv6.addresses', 'fd7a:fd4b:54e3:077c::/64', 'ipv6.gateway', 'fd7a:fd4b:54e3:077c::1', 'ipv6.route-metric', '72'), stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) SystemStateController.create(profile.id)