8 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			195 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 ;;
 | |
| depend)		echo "$IF_PPP_PHYSDEV" ;;
 | |
| esac
 |