Commit bf1d2159 authored by Lionel Gauthier's avatar Lionel Gauthier

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5405 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 9dd1a7d3
...@@ -403,6 +403,10 @@ is_openvswitch_interface() { ...@@ -403,6 +403,10 @@ is_openvswitch_interface() {
else else
if [ "a${var:0:4}" == "anone" ]; then if [ "a${var:0:4}" == "anone" ]; then
return 0; return 0;
else
if [ "a${var:0:3}" == "atun" ]; then
return 0;
fi
fi fi
fi fi
fi fi
...@@ -451,7 +455,9 @@ is_vlan_interface() { ...@@ -451,7 +455,9 @@ is_vlan_interface() {
if [ "a${interface_name:0:3}" != "aeth" ]; then if [ "a${interface_name:0:3}" != "aeth" ]; then
if [ "a${interface_name:0:4}" != "awlan" ]; then if [ "a${interface_name:0:4}" != "awlan" ]; then
if [ "a${interface_name:0:4}" != "awifi" ]; then if [ "a${interface_name:0:4}" != "awifi" ]; then
return 0; #if [ "a${interface_name:0:3}" != "atun" ]; then
return 0;
#fi
fi fi
fi fi
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment