Gentoo Archives: gentoo-dev

From: Chris White <chriswhite@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] ACCESS DENIED during emerge
Date: Fri, 28 Apr 2006 20:08:10
Message-Id: 200604281258.49773.chriswhite@gentoo.org
In Reply to: [gentoo-dev] ACCESS DENIED during emerge by "A. Khattri"
1 On Friday 28 April 2006 12:41 pm, A. Khattri wrote:
2 > In writing and testing a new ebuild, I ran emerge as root and got ACCESS
3 > DENIED errors when it tried writing two config files into /etc.
4 >
5 > Do I need to do something special for config files in an ebuild?
6
7 Don't copy files to the live filesystem, instead do:
8
9 cp whatever.conf whatever2.conf ${D}/etc/
10
11 or some people like:
12
13 insinto /etc
14 doins whatever.conf whatever2.conf
15
16 or if it's a conf.d file:
17
18 doconfd
19
20 >
21 > --
22 > Aj
23
24 --
25 Chris White
26 Gentoo Developer aka:
27 ChrisWhite
28 cpw
29 ChrisWhite|Work
30 WhiteChocolate
31 VanillaWhite
32 Whitey
33 WhiteLight
34 WhiteCheese
35 WhiteSugar
36 WhiteButter
37 WhiteWall
38 WhiteLemon
39 WhiteApple
40 WhiteBlanket
41 WhiteEnergy
42 WhiteWhite

Replies

Subject Author
Re: [gentoo-dev] ACCESS DENIED during emerge "A. Khattri" <ajai@××××.net>