2.0.2-2: libplist 2.3.0
[arch-packages.git] / ppp / trunk / ip-up
blob20473d73a22db497fe9aee80ebd942762056479c
1 #!/bin/sh
3 # This script is run by pppd when there's a successful ppp connection.
6 # Execute all scripts in /etc/ppp/ip-up.d/
7 for ipup in /etc/ppp/ip-up.d/*.sh; do
8 if [ -x $ipup ]; then
9 # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
10 $ipup "$@"
12 done