diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-11-01 11:54:10 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-11-01 11:54:10 +0000 |
commit | db313e81cbc08b554ecfc886d13776040673751a (patch) | |
tree | 5d9cdbd7e8d87fe14a03d58ce34fa5b30ae74979 /net-dialup | |
parent | Fix bug #69282. (Manifest recommit) (diff) | |
download | gentoo-2-db313e81cbc08b554ecfc886d13776040673751a.tar.gz gentoo-2-db313e81cbc08b554ecfc886d13776040673751a.tar.bz2 gentoo-2-db313e81cbc08b554ecfc886d13776040673751a.zip |
Permissions changed from 640 to 644 on ip-up/down scripts as per bug #37886
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/ppp/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/ppp/files/net.ppp0 | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-dialup/ppp/ChangeLog b/net-dialup/ppp/ChangeLog index 9a613a2cad75..5e610cbb23af 100644 --- a/net-dialup/ppp/ChangeLog +++ b/net-dialup/ppp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/ppp # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.85 2004/10/31 07:41:54 sejo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.86 2004/11/01 11:54:10 dragonheart Exp $ + + 01 Nov 2004; Daniel Black <dragonheart@gentoo.org> files/net.ppp0: + Permissions changed from 640 to 644 on ip-up/down scripts as per bug #37886 + Thanks to Oliver Schoett <oschoett@t-online.de> 31 Oct 2004; <SeJo@gentoo.org> ppp-2.4.2-r7.ebuild: stable on ppc gsla: 69152 diff --git a/net-dialup/ppp/files/net.ppp0 b/net-dialup/ppp/files/net.ppp0 index 9e7e0a7f9d45..5869c9272b93 100644 --- a/net-dialup/ppp/files/net.ppp0 +++ b/net-dialup/ppp/files/net.ppp0 @@ -4,7 +4,7 @@ # Author: Martin Schlemmer <azarah@gentoo.org> # Credits: To all those I got ideas from :) # -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/files/net.ppp0,v 1.5 2004/09/27 11:21:23 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/files/net.ppp0,v 1.6 2004/11/01 11:54:10 dragonheart Exp $ # NB: Config is in /etc/conf.d/net.$IFACE @@ -200,12 +200,12 @@ setup_cfg_files() { echo "/bin/cat /etc/ppp/resolv.conf >> /etc/resolv.conf" \ >>/etc/ppp/ip-up # Change perms because it b0rked kppp - echo "chmod 640 /etc/resolv.conf" >>/etc/ppp/ip-up + echo "chmod 644 /etc/resolv.conf" >>/etc/ppp/ip-up # ip-down: restore original /etc/resolv.conf echo "/bin/mv -f /etc/resolv.conf.old /etc/resolv.conf" \ >>/etc/ppp/ip-down - echo "chmod 640 /etc/resolv.conf" >>/etc/ppp/ip-down + echo "chmod 644 /etc/resolv.conf" >>/etc/ppp/ip-down fi echo "[ -f /etc/ppp/ip-up.local ] && . /etc/ppp/ip-up.local" \ |