Date: Fri, 20 Nov 2009 14:02:09 +0000 From: RW <rwmaillists@googlemail.com> To: ports@freebsd.org Subject: Re: rc.d scripts and REQUIRE part Message-ID: <20091120140209.0902724a@gumby.homeunix.com> In-Reply-To: <baa0bdb8ff81cb22ade10395fc383591@127.0.0.1> References: <baa0bdb8ff81cb22ade10395fc383591@127.0.0.1>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 20 Nov 2009 11:38:58 +0100 Xavier Beaudouin <kiwi@oav.net> wrote: > Hello, > > I am trying to understand how to customize rc.d scripts to get the > right startup sequence for all daemons. > > Seems we have (my case havp, but it is also the same problem for > example monit) : > > /usr/local/etc/rc.d/havp : > > # PROVIDE: havp > # REQUIRE: DAEMON cleanvar > # BEFORE: LOGIN > > But in my configuration, I need ... clamd to be started before havp. > > I have no garantee that clamd is started before havp. > > Is there any hint (I had a look in handbook, but didn't find yet) a > way to add some REQUIRE stuff for a rc script inside, for > example /etc/rc.conf ? I would suggest that you don't modify any scripts because you will have to maintain them. I'd create some dummy scripts in /usr/local/etc to provide the ordering e.g. #!/bin/sh # # PROVIDE: PREHAVP # REQUIRE: clamd # BEFORE: havp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20091120140209.0902724a>