7 lines
160 B
Bash
Executable file
7 lines
160 B
Bash
Executable file
#!/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
|