Date: Tue, 21 Sep 2004 15:04:42 +0100 From: "Markie" <mark.cullen@dsl.pipex.com> To: "Giorgos Keramidas" <keramida@ceid.upatras.gr> Cc: freebsd-questions@freebsd.org Subject: Re: reload rc.conf during boot process Message-ID: <024101c49fe3$f413afe0$f800000a@laptop> References: <01bb01c49f69$48c66300$f800000a@laptop> <20040921093647.GC4451@orion.daedalusnetworks.priv> <022001c49fdd$714ac1d0$f800000a@laptop> <20040921132448.GA43059@orion.daedalusnetworks.priv> <023501c49fe0$9b19da70$f800000a@laptop> <20040921135117.GA43474@orion.daedalusnetworks.priv>
next in thread | previous in thread | raw e-mail | index | archive | help
----- Original Message ----- From: "Giorgos Keramidas" <keramida@ceid.upatras.gr> To: "Markie" <mark.cullen@dsl.pipex.com> Cc: <freebsd-questions@freebsd.org> Sent: Tuesday, September 21, 2004 2:51 PM Subject: Re: reload rc.conf during boot process | On 2004-09-21 14:40, Markie <mark.cullen@dsl.pipex.com> wrote: | > I was just looking at that diff you attached. I think I understand it near | > enough, but just before the esac is that like a default: style part? So if | > nothing matches, i.e if the script isn't called selectcf, then it'll just | > run the script and not reload rc.conf? Wouldn't I need a run_rc_script | > before the unset _rc_conf_loaded, to actually run my selectcf script? :-) | | It's there already. I've just used a trick with md5(1) to check if the | file rc.conf changes and you missed it because it's hidden between two | other lines. Just above the body of the if-block you're reading I had | added the following: | | % + _sum_before=`md5 /etc/rc.conf` | % + run_rc_script ${_rc_elem} ${_boot} | % + _sum_after=`md5 /etc/rc.conf` | Oh yeah! Clever stuff! I figured I had just missed something... stupid me :-) Cheers! Just tested that out and it seems to work, it didn't start up sshd with my test config! I had a little problem(?) with rcorder though, I think. I specified # REQUIRE: mountcritlocal and from what I read, I was expecting my script to come up somewhere very near mountcritlocal, but it actually appeared after sendmail.. which is miles away. I solved it for now by putting # BEFORE: ipfilter aswell, because really I want it always after mountcritlocal. I'm a bit confused as to why with # REQUIRE: mountcritlocal it was being run so late. Did I misread something? Anyway! With the BEFORE line it works great! Exactly how I wanted it! Thanks alot!!
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?024101c49fe3$f413afe0$f800000a>