mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #290] Bridge name pattern does not accept all valid characters #229
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sque on GitHub (Apr 24, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/290
In my network setup I use br-something as the name of the bridge. When I tried to add a new network in webvirtmgr for this bridge interface I got the error
"Please match the requested format."I believe that bridge interface should accept dash and hyphens. The
patternattribute of the html tag should be changed from[a-z0-9]+to[a-z0-9\-_]+