ifupdown-ng/executor-scripts/linux/ppp

9 lines
195 B
Text
Raw Normal View History

2020-08-19 12:11:52 +00:00
#!/bin/sh
set -e
[ -z "$IF_PPP_PROVIDER" ] && exit 0
case "$PHASE" in
pre-up) ${MOCK} pon $IF_PPP_PROVIDER ;;
post-down) ${MOCK} poff $IF_PPP_PROVIDER ;;
depend) echo "$IF_PPP_PHYSDEV" ;;
2020-08-19 12:11:52 +00:00
esac