diff options
author | Alin Năstac <mrness@gentoo.org> | 2004-11-09 17:24:18 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2004-11-09 17:24:18 +0000 |
commit | 085dcfba9e62c6f0352ab6c00a1675e2ebf06b1e (patch) | |
tree | 842ebbbb7a3001434135aa3a7ac4593520dff455 /net-dialup/isdn4k-utils | |
parent | easytag 1.0 stable on x86 (diff) | |
download | gentoo-2-085dcfba9e62c6f0352ab6c00a1675e2ebf06b1e.tar.gz gentoo-2-085dcfba9e62c6f0352ab6c00a1675e2ebf06b1e.tar.bz2 gentoo-2-085dcfba9e62c6f0352ab6c00a1675e2ebf06b1e.zip |
correctly pass empty parameters to .local scripts
Diffstat (limited to 'net-dialup/isdn4k-utils')
-rw-r--r-- | net-dialup/isdn4k-utils/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/files/3.5_p20041024/ip-down | 2 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/files/3.5_p20041024/ip-up | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/net-dialup/isdn4k-utils/ChangeLog b/net-dialup/isdn4k-utils/ChangeLog index 0cd3d65c65ad..635b0233a5c7 100644 --- a/net-dialup/isdn4k-utils/ChangeLog +++ b/net-dialup/isdn4k-utils/ChangeLog @@ -1,8 +1,12 @@ # ChangeLog for net-dialup/isdn4k-utils # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/ChangeLog,v 1.25 2004/11/09 16:48:37 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/ChangeLog,v 1.26 2004/11/09 17:24:18 mrness Exp $ 09 Nov 2004; Alin Nastac <mrness@gentoo.org> + files/3.5_p20041024/ip-down, files/3.5_p20041024/ip-up: + Correctly pass empty params to ip-up.local and ip-down.local . See bug #70440. + + 09 Nov 2004; Alin Nastac <mrness@gentoo.org> -isdn4k-utils-20041024.ebuild, -isdn4k-utils-20041024-r1.ebuild, -files/20041024/config, -files/20041024/gentoo.patch, -files/20041024/ioptions, -files/20041024/ip-down.ippp0, -files/20041024/ip-up, diff --git a/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-down b/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-down index a9ea5b5c2d94..ab5264cd361e 100644 --- a/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-down +++ b/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-down @@ -34,4 +34,4 @@ if [ -n "${gateway}" ] && [ "${gateway%/*}" = "$1" ]; then /sbin/route add default dev ${gateway%/*} fi -[ -f /etc/ppp/ip-down.local ] && . /etc/ppp/ip-down.local $1 $2 $3 $4 $5 $6 +[ -f /etc/ppp/ip-down.local ] && . /etc/ppp/ip-down.local "$1" "$2" "$3" "$4" "$5" "$6" diff --git a/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-up b/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-up index 0aa384f01b7a..760a4e57846d 100644 --- a/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-up +++ b/net-dialup/isdn4k-utils/files/3.5_p20041024/ip-up @@ -39,4 +39,4 @@ if [ "$USEPEERDNS" ]; then fi -[ -f /etc/ppp/ip-up.local ] && . /etc/ppp/ip-up.local $1 $2 $3 $4 $5 $6 +[ -f /etc/ppp/ip-up.local ] && . /etc/ppp/ip-up.local "$1" "$2" "$3" "$4" "$5" "$6" |