diff options
author | Christian Heim <phreak@gentoo.org> | 2007-05-18 12:16:47 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-05-18 12:16:47 +0000 |
commit | bacf85c4941164d028afdd089e704d8eb100f1b4 (patch) | |
tree | cb360c610f5066d4db16f47fd1d34b3dfdb993a0 /net-www | |
parent | alpha stable wrt #178510 (diff) | |
download | gentoo-2-bacf85c4941164d028afdd089e704d8eb100f1b4.tar.gz gentoo-2-bacf85c4941164d028afdd089e704d8eb100f1b4.tar.bz2 gentoo-2-bacf85c4941164d028afdd089e704d8eb100f1b4.zip |
Fix the chmod's for suexec, as chmod can't be used on symlinks (triggers a sandbox violation).
(Portage version: 2.1.2.7)
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/apache/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/apache/apache-2.2.4-r1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-www/apache/ChangeLog b/net-www/apache/ChangeLog index a2c84a5a2e09..56dbbff7c19b 100644 --- a/net-www/apache/ChangeLog +++ b/net-www/apache/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/apache # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/apache/ChangeLog,v 1.522 2007/05/18 09:07:03 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/apache/ChangeLog,v 1.523 2007/05/18 12:16:47 phreak Exp $ + + 18 May 2007; Christian Heim <phreak@gentoo.org> apache-2.2.4-r1.ebuild: + Fix the chmod's for suexec, as chmod can't be used on symlinks (triggers a + sandbox violation). 18 May 2007; Christian Heim <phreak@gentoo.org> apache-2.2.4-r1.ebuild: Updated patchtarball, including updated peruser and itk patches. diff --git a/net-www/apache/apache-2.2.4-r1.ebuild b/net-www/apache/apache-2.2.4-r1.ebuild index 22eb27549c47..12af20808f62 100644 --- a/net-www/apache/apache-2.2.4-r1.ebuild +++ b/net-www/apache/apache-2.2.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/apache/apache-2.2.4-r1.ebuild,v 1.5 2007/05/18 09:07:03 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/apache/apache-2.2.4-r1.ebuild,v 1.6 2007/05/18 12:16:47 phreak Exp $ inherit eutils flag-o-matic gnuconfig multilib autotools @@ -293,8 +293,8 @@ src_install () { # Set up some sane permissions if ! use no-suexec ; then - fowners 0:apache /usr/sbin/suexec2 - fperms 4710 /usr/sbin/suexec2 + fowners 0:apache /usr/sbin/suexec + fperms 4710 /usr/sbin/suexec fi keepdir /etc/apache2/vhosts.d |