Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 May 2004 15:54:26 +0200
From:      "Cyrille Lefevre" <clefevre-lists@9online.fr>
To:        "Nagilum" <freebsd@nagilum.org>, "Danny Braniss" <danny@cs.huji.ac.il>
Cc:        current@freebsd.org
Subject:   Re: /usr/local/etc/rc.conf & rcorder
Message-ID:  <055201c44716$c9cffc00$7890a8c0@dyndns.org>
References:  <20040530120314.BB9CF43D31@mx1.FreeBSD.org> <40B9FD0F.1070304@nagilum.org>

next in thread | previous in thread | raw e-mail | index | archive | help
"Nagilum" <freebsd@nagilum.org> wrote:
[snip]
> I strongly support Patricks original proposal, as for the replies, this
> would not interfere with your usual way of doing things, you could still
> keep your ports startup options in /etc/rc.conf it would make no
> difference.  But give (optionally) a better separation of base and
> ports. The settings may or may not be exported throught /usr/local/ to
> other hosts, the decision would be up to the admin as changes to rc.conf
> are (nearly) always made manually.
> However while we're at it I also would like to propose the use of
> rcorder for /usr/local/etc/rc.d/. There are certain ports that use
> number prefixes to try to ensure proper startup order (e.g. mysql-client
> or pkgtools, see the discussion prio the introduction of rcorder for why
> this is suboptimal) however as we already have a working solution for
> this problem it is only matter of using it, the required change would be
> minimal:
>
> bash-2.05b# diff -Naur bash-2.05b# diff -Naur \
> /usr/src/etc/rc.d/localdaemons /etc/rc.d/localdaemons
> --- /usr/src/etc/rc.d/localdaemons      Mon May  5 17:38:41 2003
> +++ localdaemons Sat Nov  1 17:11:57 2003
> @@ -29,7 +29,7 @@
> fi
> for dir in ${local_startup}; do
> if [ -d "${dir}" ]; then
> - for script in ${dir}/*.sh; do
> + for script in `rcorder ${dir}/*.sh 2>/dev/null`; do
> slist="${slist}${script_name_sep}${script}"
> done
>
> fi
>
>
> (Replace localdaemons with localpkg for newer system.)
> There are certain ports (such as bacula) that would definatly profit
> from this (e.g. all ports that require mysql/pgsql to be running, while
> beeing started)


there is still a problem, that is, mixing /etc/rc.d and /usr/local/etc/rc.d
startup scripts whenever it is needed.

for example, I use mimedefang, and instead of moving
/usr/local/etc/rc.d/mimedefang.sh
to /etc/rc.d, I restart sendmail after mimedefang has been started using a
home made script in /usr/local/etc/rc.d.

however, since not all local startup script have not been converted to rc.subr,
it is not yet possible to do something like rcorder /etc/rc.d
/usr/local/etc/rc.d
from /etc/rc, but should be the target to be reached, IMHO.

Cyrille Lefevre.
-- 
home: mailto:cyrille.lefevre@laposte.net



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?055201c44716$c9cffc00$7890a8c0>