9 lines
241 B
Bash
9 lines
241 B
Bash
#!/bin/sh
|
|
|
|
# if the interface being brought up is tap[n], create
|
|
# the tap device first
|
|
if=$(echo "$1" | sed -e 's,ifcfg-,,')
|
|
tap=$(echo "$if" | sed -e 's,[0-9]\+$,,')
|
|
if [ "$tap" == "tap" ]; then
|
|
tunctl -u _openqa-worker -p -t "$if"
|
|
fi
|