2020-07-28 18:07:09 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-07-29 08:14:42 +00:00
|
|
|
[ -z "$IF_MOCK_DEPENDS" ] && IF_MOCK_DEPENDS="eth0 eth1 eth2 eth3 eth4"
|
|
|
|
|
2020-07-28 18:07:09 +00:00
|
|
|
case "$PHASE" in
|
2020-07-29 08:14:42 +00:00
|
|
|
depend) echo "$IF_MOCK_DEPENDS" ;;
|
2020-07-28 18:07:09 +00:00
|
|
|
esac
|