archrelease: copy trunk to extra-x86_64
[arch-packages.git] / ppp / trunk / ip-down
blobcfd3ae093b50693d6684732f0fd14452ec825cd1
1 #!/bin/sh
3 # This script is run by pppd after the connection has ended.
6 # Execute all scripts in /etc/ppp/ip-down.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