summaryrefslogtreecommitdiffstats
path: root/roles/openqa/worker/files/ifup-pre-local
blob: 639178a84adfc7c676a391e3747ffc2705bb9ad3 (plain)
1
2
3
4
5
6
7
8
9
#!/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