As a quick workaround, this script will move all Netplan files that contain 
'wireguard' away:
sudo bash
DEST="/tmp/netplan"
mkdir -p "$DEST"
# Find all files containing "wireguard" (case-insensitive) and move them
grep -RiIl "wireguard" /etc/netplan/ | while read -r file; do
    echo "Moving $file to $DEST"
    mv "$file" "$DEST/"
done
exit

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2044014

Title:
  networkmanager crashes on configuring wireguard connection via nm-
  connection-editor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/2044014/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to