mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:27:13 +08:00
13 lines
330 B
Plaintext
13 lines
330 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# This script is run by pppd when there's a successful ppp connection.
|
||
|
#
|
||
|
|
||
|
# Execute all scripts in /etc/ppp/ipv6-up.d/
|
||
|
for ipup in /etc/ppp/ipv6-up.d/*.sh; do
|
||
|
if [ -x $ipup ]; then
|
||
|
# Parameters: interface-name tty-device speed local-link-local-address remote-link-local-address ipparam
|
||
|
$ipup "$@"
|
||
|
fi
|
||
|
done
|