diff --git a/executor-scripts/linux/ppp b/executor-scripts/linux/ppp new file mode 100755 index 0000000..ea7b085 --- /dev/null +++ b/executor-scripts/linux/ppp @@ -0,0 +1,7 @@ +#!/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 ;; +esac