From e0d07ed82cda3f205d0760a9b1c707f52d9a9d14 Mon Sep 17 00:00:00 2001 From: Charalampos Mainas Date: Fri, 13 Mar 2026 17:38:53 +0200 Subject: [PATCH] fix: Regexp of network devices to remove Fix the regexp that compares the network interfaces names to find urunc tap devices. Make it follow the correct naming convention we use for tap devices in urunc. Signed-off-by: Charalampos Mainas --- pkg/network/network.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/network/network.go b/pkg/network/network.go index 591fc4d4..a530fe92 100644 --- a/pkg/network/network.go +++ b/pkg/network/network.go @@ -278,7 +278,7 @@ func CleanupAllUruncTaps() error { } var retErr error - tapRe := regexp.MustCompile(`^tap_\d+_urunc$`) + tapRe := regexp.MustCompile(`^tap\d+_urunc$`) for _, link := range links { attrs := link.Attrs() if attrs == nil {