2014-04-16 09:22:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# ipv6-down
|
|
|
|
#
|
|
|
|
# Called by pppd after IPV6CP/down was finished
|
|
|
|
#
|
|
|
|
# This file should not be modified -- make local changes to
|
|
|
|
# /etc/ppp/ipv6-down.local instead
|
|
|
|
|
2024-04-17 13:08:41 +00:00
|
|
|
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] && /etc/ppp/ipv6-down.initscripts "$@"
|
2014-04-16 09:22:38 +00:00
|
|
|
|
|
|
|
[ -x /etc/ppp/ipv6-down.local ] && /etc/ppp/ipv6-down.local "$@"
|
|
|
|
|
|
|
|
exit 0
|