archrelease: copy trunk to extra-x86_64
[arch-packages.git] / ppp / trunk / ipv6-down
blobd3b9e28b38d0dfc0829c1918f138d0c65e73e0dd
1 #!/bin/sh
3 # This script is run by pppd after the connection has ended.
6 # Execute all scripts in /etc/ppp/ipv6-down.d/
7 for ipdown in /etc/ppp/ipv6-down.d/*.sh; do
8 if [ -x $ipdown ]; then
9 # Parameters: interface-name tty-device speed local-link-local-address remote-link-local-address ipparam
10 $ipdown "$@"
12 done