mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 23:55:57 +03:00
[GH-ISSUE #603] Bridge name pattern still does not accept all valid characters #457
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 @mjolnirgs on GitHub (Mar 7, 2016).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/603
Following up from Issue #290 the pattern also needs to accept uppercase characters:
The pattern attribute of the html tag in templates/networks.html on line ~123 should be changed from [a-z0-9]+ to [a-zA-Z0-9-_]+
All of our vlan tags are named in uppercase, and we define our bridges on our KVM hosts to match.