Added ppp-2.4.5 build template.

--HG--
extra : convert_revision : 277478e29b83b29d1d40ae95b5c522ea909f9647
This commit is contained in:
Juan RP
2010-04-12 23:53:08 +02:00
parent b73f2e0e0f
commit f1d2df23c2
12 changed files with 621 additions and 0 deletions

12
srcpkgs/ppp/files/ip-up Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
#
# This script is run by pppd when there's a successful ppp connection.
#
# Execute all scripts in /etc/ppp/ip-up.d/
for ipup in /etc/ppp/ip-up.d/*.sh; do
if [ -x $ipup ]; then
# Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
$ipup "$@"
fi
done