mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
307 B
Bash
12 lines
307 B
Bash
#!/bin/sh
|
|
#
|
|
# This script is run by pppd after the connection has ended.
|
|
#
|
|
|
|
# Execute all scripts in /etc/ppp/ip-up.d/
|
|
for ipdown in /etc/ppp/ip-down.d/*.sh; do
|
|
if [ -x $ipdown ]; then
|
|
# Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
|
|
$ipdown "$@"
|
|
fi
|
|
done
|