Attention is currently required from: lynxis lazus, pespin.
osmith has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40305?usp=email )
Change subject: epdg: introduce testenv support ......................................................................
Patch Set 3:
(1 comment)
File epdg/epdg.sh:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40305/comment/27a0e40e_88c06... : PS3, Line 28: pipework --wait -i ${EPDG_TUN} instead of vendoring the pipework script, we can just do a simple loop here:
```sh FOUND=0 for i in $(seq 1 5); do sleep 1 if ip link ls dev "$EPDG_TUN" >/dev/null; then FOUND=1 break fi done
if [ "$FOUND" = 0 ]; then echo echo "ERROR: osmo-epdg did not create $EPDG_TUN!" echo exit 1 fi ```