diff options
Diffstat (limited to 'scripts/runqemu-gen-tapdevs')
-rwxr-xr-x | scripts/runqemu-gen-tapdevs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs index 9f313879e6..15bccd4484 100755 --- a/scripts/runqemu-gen-tapdevs +++ b/scripts/runqemu-gen-tapdevs | |||
@@ -62,6 +62,10 @@ if [ -z "$IFCONFIG" ]; then | |||
62 | # Is it ever anywhere else? | 62 | # Is it ever anywhere else? |
63 | IFCONFIG=/sbin/ifconfig | 63 | IFCONFIG=/sbin/ifconfig |
64 | fi | 64 | fi |
65 | if [ ! -x "$IFCONFIG" ]; then | ||
66 | echo "$IFCONFIG cannot be executed" | ||
67 | exit 1 | ||
68 | fi | ||
65 | 69 | ||
66 | # Ensure we start with a clean slate | 70 | # Ensure we start with a clean slate |
67 | for tap in `$IFCONFIG | grep ^tap | awk '{ print \$1 }'`; do | 71 | for tap in `$IFCONFIG | grep ^tap | awk '{ print \$1 }'`; do |