File: ppp

package info (click to toggle)
ifupdown-ng 0.12.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 964 kB
  • sloc: ansic: 3,572; sh: 980; makefile: 233
file content (14 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
[ -z "$IF_PPP_PROVIDER" ] && exit 0

case "$PHASE" in
create)
	${MOCK} pon $IF_PPP_PROVIDER
	;;
destroy)
	${MOCK} poff $IF_PPP_PROVIDER
	;;
depend)
	echo "$IF_PPP_PHYSDEV"
	;;
esac