summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-03-23 12:46:11 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-03-23 12:46:11 +0000
commit1bb79aea27844f3cb8ce92f8ac2c5990663beac4 (patch)
treeea0139d52d24697316af01b76b5fc497b97e9f69 /eclass
parentAdd alpha (diff)
downloadhistorical-1bb79aea27844f3cb8ce92f8ac2c5990663beac4.tar.gz
historical-1bb79aea27844f3cb8ce92f8ac2c5990663beac4.tar.bz2
historical-1bb79aea27844f3cb8ce92f8ac2c5990663beac4.zip
Let doins handle the perms for {do,new}pamd; fixes bug 86365
Diffstat (limited to 'eclass')
-rw-r--r--eclass/eutils.eclass6
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index 24d8e324e3b2..22528c2adac9 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.161 2005/03/23 04:30:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.162 2005/03/23 12:46:11 ka0ttic Exp $
#
# Author: Martin Schlemmer <azarah@gentoo.org>
#
@@ -1744,8 +1744,6 @@ dopamd() {
use pam || return 0
insinto /etc/pam.d
- # these are the default doins options, but be explicit just in case
- insopts -m 0644 -o root -g root
doins "$@" || die "failed to install $@"
}
# newpamd <old name> <new name>
@@ -1757,8 +1755,6 @@ newpamd() {
use pam || return 0
insinto /etc/pam.d
- # these are the default doins options, but be explicit just in case
- insopts -m 0644 -o root -g root
newins "$1" "$2" || die "failed to install $1 as $2"
}