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