public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] /etc/conf.d/net
@ 2002-01-31  3:52 Chad M. Huneycutt
  2002-01-31  5:38 ` Daniel Robbins
  0 siblings, 1 reply; 5+ messages in thread
From: Chad M. Huneycutt @ 2002-01-31  3:52 UTC (permalink / raw
  To: gentoo-dev

Is there a reason someone went through all the trouble of hacking
runscript.sh use /etc/conf.d/net for the net.* scripts and /etc/conf.d/foo
for all other scripts foo.  It seems just as logical (and easier) to just
use /etc/conf.d/net.eth0 for /etc/init.d/net.eth0

Just something I came across while I was scouring the init scripts.

I am going to see if I can better integrate pcmcia network script with our
startup scripts (or at least configuration).

-- 
Chad Huneycutt                                try { Windows }
Ph.D. Student                                 catch ( Exception BSOD )
Georgia Tech College of Computing               { linux };
http://www.cc.gatech.edu/~chadh



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] /etc/conf.d/net
  2002-01-31  3:52 [gentoo-dev] /etc/conf.d/net Chad M. Huneycutt
@ 2002-01-31  5:38 ` Daniel Robbins
  2002-01-31  5:44   ` Arcady Genkin
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Robbins @ 2002-01-31  5:38 UTC (permalink / raw
  To: gentoo-dev

On Wed, 2002-01-30 at 20:52, Chad M. Huneycutt wrote:
> Is there a reason someone went through all the trouble of hacking
> runscript.sh use /etc/conf.d/net for the net.* scripts and /etc/conf.d/foo
> for all other scripts foo.  It seems just as logical (and easier) to just
> use /etc/conf.d/net.eth0 for /etc/init.d/net.eth0
> 
> Just something I came across while I was scouring the init scripts.

It's just easier to specify all your network interfaces in a single file
rather than having to edit several.

Best Regards,

-- 
Daniel Robbins                                  <drobbins@gentoo.org>
Chief Architect/President                       http://www.gentoo.org 
Gentoo Technologies, Inc.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] /etc/conf.d/net
  2002-01-31  5:38 ` Daniel Robbins
@ 2002-01-31  5:44   ` Arcady Genkin
  2002-01-31  6:03     ` Guido Bakker
  0 siblings, 1 reply; 5+ messages in thread
From: Arcady Genkin @ 2002-01-31  5:44 UTC (permalink / raw
  To: gentoo-dev

Daniel Robbins <drobbins@gentoo.org> writes:

> It's just easier to specify all your network interfaces in a single file
> rather than having to edit several.

Very true.  I was hoping Gentoo would be following the BSD philosophy of
having most of configuration in one file (e.g. /etc/rc.conf). :(
So far it's my only beef with Gentoo. ;^)
-- 
Arcady Genkin
Don't read everything you believe.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] /etc/conf.d/net
  2002-01-31  5:44   ` Arcady Genkin
@ 2002-01-31  6:03     ` Guido Bakker
  2002-01-31 20:10       ` Martin Schlemmer
  0 siblings, 1 reply; 5+ messages in thread
From: Guido Bakker @ 2002-01-31  6:03 UTC (permalink / raw
  To: gentoo-dev, Arcady Genkin

On Thursday 31 January 2002 06:44, Arcady Genkin wrote:
> Daniel Robbins <drobbins@gentoo.org> writes:
> > It's just easier to specify all your network interfaces in a single file
> > rather than having to edit several.
>
> Very true.  I was hoping Gentoo would be following the BSD philosophy of
> having most of configuration in one file (e.g. /etc/rc.conf). :(
> So far it's my only beef with Gentoo. ;^)

Your signature speaks for itself? :-)

-- 
Guido Bakker
Interne Automatisering
IQUIP Informatica B.V.

*: +31 (020) 660 66 00 + 0281
*: g.p.c.bakker@iquip.nl
HTTP://www.iquip.nl


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] /etc/conf.d/net
  2002-01-31  6:03     ` Guido Bakker
@ 2002-01-31 20:10       ` Martin Schlemmer
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Schlemmer @ 2002-01-31 20:10 UTC (permalink / raw
  To: Gentoo-Dev

[-- Attachment #1: Type: text/plain, Size: 1049 bytes --]

On Thu, 2002-01-31 at 08:03, Guido Bakker wrote:
> On Thursday 31 January 2002 06:44, Arcady Genkin wrote:
> > Daniel Robbins <drobbins@gentoo.org> writes:
> > > It's just easier to specify all your network interfaces in a single file
> > > rather than having to edit several.
> >
> > Very true.  I was hoping Gentoo would be following the BSD philosophy of
> > having most of configuration in one file (e.g. /etc/rc.conf). :(
> > So far it's my only beef with Gentoo. ;^)
> 
> Your signature speaks for itself? :-)
> 

Thing about Gentoo (which I love), is it is very flexible.

In this case I am sure you will be delighted to know that you
can do:

# cd /etc/conf.d
# cat * > basic

---- OR ----

# cd /etc/conf.d
# cat * > /etc/rc.conf

Breaking things up, just generally helps with the packaging,
but you can still only use /etc/rc.conf, or /etc/conf.d/basic
for any of your rc-script config needs.


Greetins,

-- 

Martin Schlemmer
Gentoo Linux Developer, Desktop Team Developer
Cape Town, South Africa


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 232 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-01-31 20:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-31  3:52 [gentoo-dev] /etc/conf.d/net Chad M. Huneycutt
2002-01-31  5:38 ` Daniel Robbins
2002-01-31  5:44   ` Arcady Genkin
2002-01-31  6:03     ` Guido Bakker
2002-01-31 20:10       ` Martin Schlemmer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox