Vagrant Issue #6608
Refactor and repair regular expression attempting to match present interfaces. The refactored regular expression will match on enp* ens* eth* variants.
This commit is contained in:
parent
b63fdf756f
commit
652b4dac55
|
@ -15,7 +15,7 @@ module VagrantPlugins
|
||||||
|
|
||||||
# Read network interface names
|
# Read network interface names
|
||||||
interfaces = []
|
interfaces = []
|
||||||
comm.sudo("ifconfig | grep 'enp0\\|ens' | cut -f1 -d:") do |_, result|
|
comm.sudo("ifconfig | grep '(e[n,t][h,s,p][[:digit:]]([a-z][[:digit:]])?' | cut -f1 -d:") do |_, result|
|
||||||
interfaces = result.split("\n")
|
interfaces = result.split("\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue