summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-gen-tapdevs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-gen-tapdevs')
-rwxr-xr-xscripts/runqemu-gen-tapdevs6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
index f5be30ac32..d3b27be291 100755
--- a/scripts/runqemu-gen-tapdevs
+++ b/scripts/runqemu-gen-tapdevs
@@ -59,10 +59,10 @@ if [ ! -x "$RUNQEMU_IFUP" ]; then
59 exit 1 59 exit 1
60fi 60fi
61 61
62IFCONFIG=`which ifconfig 2> /dev/null` 62IFCONFIG=`which ip 2> /dev/null`
63if [ -z "$IFCONFIG" ]; then 63if [ -z "$IFCONFIG" ]; then
64 # Is it ever anywhere else? 64 # Is it ever anywhere else?
65 IFCONFIG=/sbin/ifconfig 65 IFCONFIG=/sbin/ip
66fi 66fi
67if [ ! -x "$IFCONFIG" ]; then 67if [ ! -x "$IFCONFIG" ]; then
68 echo "$IFCONFIG cannot be executed" 68 echo "$IFCONFIG cannot be executed"
@@ -70,7 +70,7 @@ if [ ! -x "$IFCONFIG" ]; then
70fi 70fi
71 71
72# Ensure we start with a clean slate 72# Ensure we start with a clean slate
73for tap in `$IFCONFIG | grep ^tap | awk '{ print \$1 }' | sed s/://`; do 73for tap in `$IFCONFIG link | grep tap | awk '{ print \$2 }' | sed s/://`; do
74 echo "Note: Destroying pre-existing tap interface $tap..." 74 echo "Note: Destroying pre-existing tap interface $tap..."
75 $TUNCTL -d $tap 75 $TUNCTL -d $tap
76done 76done