https://bugzilla.novell.com/show_bug.cgi?id=784952 https://bugzilla.novell.com/show_bug.cgi?id=784952#c10 Martin Vidner <mvidner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mvidner@suse.com --- Comment #10 from Martin Vidner <mvidner@suse.com> 2012-10-17 15:51:46 CEST --- The yast code is under review at https://github.com/yast/yast-network/pull/26 Marius, IFNAME_RX in comment 7 allows backslash in interface name. Just making sure, is that intentional? What is the authority for valid interface names (other than we want our tools to be consistent)? Here's a handy list of all ASCII punctuation: https://github.com/mvidner/yast-yast2/blob/dcc65a5b8c55d565436dc2ab5a5f2604a... $ IFNAME_RX='^[[:alnum:]\\._:-]{1,15}$' $ IFNAME='eth\0'; echo $IFNAME is; if [[ 'eth\0' =~ ${IFNAME_RX} ]]; then echo valid; else echo invalid; fi eth\0 is valid -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.