On Tue, 2008-01-01 at 11:11 -0600, William Hubbs wrote:
> On Tue, Jan 01, 2008 at 12:27:24PM +0000, Roy Marples wrote:
> > Just make a standard init script for it with this dependency block
> > 
> > depend() {
> >    before checkfs
> > }
> 
> Would it be safe to change this to before checkroot'?

Some scripts do run before checkroot, such as clock. clock should be the
first script started, so if you want it to go really early then

depend() {
   before *
   after clock
}

would also work. Note that you have to put the dependencies in that
order, and it only works with baselayout-2.

If you wanted it to start before clock you'll need to do this

depend() {
   before *
}

AND add this to /etc/conf.d/clock
RC_AFTER=brltty

Again, baselayout-2 only.

Thanks

Roy

-- 
[EMAIL PROTECTED] mailing list

Reply via email to