svn commit: r230007 - in head: etc etc/rc.d share/man/man8

John Baldwin jhb at freebsd.org
Wed Jan 18 18:49:10 UTC 2012


On Wednesday, January 18, 2012 6:29:10 am Eygene Ryabinkin wrote:
> Fri, Jan 13, 2012 at 11:21:48AM +0400, Eygene Ryabinkin wrote:
> > But seems like the whole problem is that I used the err() function
> > instead of doing 'echo $errmsg; exit 1'.  Such code shouldn't be
> > conditionalized for the devd, since it is only syslog message that
> > worried people; devd doesn't care what is written to the standard
> > output or the standard error by the scripts it invokes once it become
> > the daemon, since everything goes to /dev/null after calling
> > daemon(3).
> > 
> > So, seems like that the following dhclient_pre_check() will make
> > everyone happy:
> > {{{
> > dhclient_pre_check()
> > {
> >         if [ -z "${rc_force}" ] && ! dhcpif $ifn; then
> >                 echo "'$ifn' is not a DHCP-enabled interface"
> > 		exit 1
> >         fi
> > }
> > }}}
> > Hadn't tested it yet, but will do it today.
> 
> The attached patch that just changes 'err' to 'echo ...; exit 1'
> works fine for me.
> 
> Any views on it?

Seems ok to me.

> > The related topic: in the process of grepping for dhclient within
> > /etc, I had found that /etc/netstart still wants to invoke it.  But it
> > will do a lone '/etc/rc.d/dhclient quietstart' and this will never
> > be useful in the current state of dhclient: it will refuse to process
> > any commands without the interface being specified.  And since we
> > have the invocation of /etc/rc.d/netif just two lines above, I think
> > that it will be good to remove call to dhclient from /etc/netstart.
> > 
> > At the time of the original addition of call to dhclient to /etc/netstart
> > (r114213), dhclient script had another form,
> >   
http://svnweb.freebsd.org/base/head/etc/rc.d/dhclient?revision=113759&view=markup&pathrev=114213
> > and it was really a normal rc.d script that requires only one argument.
> > Now it is more of a helper-type script.
> > .
> > Am I missing something important here or the removal can really be
> > done?
> 
> Anyone can say anything about /etc/netstart issue?

My guess is that it is ok to remove it from netstart.

-- 
John Baldwin


More information about the svn-src-head mailing list