updated on Wed Jan 25 00:20:47 UTC 2012
[aur-mirror.git] / ppp-mppe / ip-down
blob301f3ab9badeb73d41efd2045ac624b7de64b639
1 #!/bin/sh
3 # This script is run by pppd after the connection has ended.
6 # Execute all scripts in /etc/ppp/ip-up.d/
7 for ipdown in /etc/ppp/ip-down.d/*.sh; do
8 if [ -x $ipdown ]; then
9 # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
10 $ipdown "$@"
12 done