Author: arkurth
Date: Wed Mar 4 19:22:00 2015
New Revision: 1664121
URL: http://svn.apache.org/r1664121
Log:
VCL-818
Removed 'virtual' from the list of ignored network interface descriptions in
OS.pm::get_public_interface_name. This string may appear in the description of
some valid network interfaces.
Modified:
vcl/trunk/managementnode/lib/VCL/Module/OS.pm
Modified: vcl/trunk/managementnode/lib/VCL/Module/OS.pm
URL:
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS.pm?rev=1664121&r1=1664120&r2=1664121&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS.pm Wed Mar 4 19:22:00 2015
@@ -1508,7 +1508,7 @@ sub get_public_interface_name {
notify($ERRORS{'DEBUG'}, 0, "interface
'$check_interface_name' ignored because its name contains '$1'");
next INTERFACE;
}
- elsif ($description =~
/(loopback|virtual|afs|tunnel|pseudo|6to4|isatap)/i) {
+ elsif ($description =~
/(loopback|afs|tunnel|pseudo|6to4|isatap)/i) {
notify($ERRORS{'DEBUG'}, 0, "interface
'$check_interface_name' ignored because its description contains '$1'");
next INTERFACE;
}