Circular dependency in rc.d after r197527

View: New views
4 Messages — Rating Filter:   Alert me  

Circular dependency in rc.d after r197527

by Mykola Dzham :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi!
After r197527 circular dependency found in rc.d scripts: stf and faith
conatins
# REQUIRE: netif routing
and after r197527 routing contains
# REQUIRE: faith netif ppp stf

I think tath deleting "routing" from REQUIRE list on stf and faith
required.

--
Mykola Dzham, LEFT-(UANIC|RIPE)
JID: levsha@...
_______________________________________________
freebsd-rc@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-rc
To unsubscribe, send any mail to "freebsd-rc-unsubscribe@..."

Re: Circular dependency in rc.d after r197527

by Doug Barton :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Mykola Dzham wrote:
> Hi!
> After r197527 circular dependency found in rc.d scripts: stf and faith
> conatins
> # REQUIRE: netif routing
> and after r197527 routing contains
> # REQUIRE: faith netif ppp stf
>
> I think tath deleting "routing" from REQUIRE list on stf and faith
> required.

Agreed. hrs, any objections?


Doug

--

        Improve the effectiveness of your Internet presence with
        a domain name makeover!    http://SupersetSolutions.com/

_______________________________________________
freebsd-rc@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-rc
To unsubscribe, send any mail to "freebsd-rc-unsubscribe@..."

Re: Circular dependency in rc.d after r197527

by hrs :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Doug Barton <dougb@...> wrote
  in <4ADA2080.6060502@...>:

do> Mykola Dzham wrote:
do> > Hi!
do> > After r197527 circular dependency found in rc.d scripts: stf and faith
do> > conatins
do> > # REQUIRE: netif routing
do> > and after r197527 routing contains
do> > # REQUIRE: faith netif ppp stf
do> >
do> > I think tath deleting "routing" from REQUIRE list on stf and faith
do> > required.
do>
do> Agreed. hrs, any objections?

 Thank you for pointing out it.  No objection from me.  The attached
 patch should fix it.

-- Hiroki

Index: faith
===================================================================
--- faith (revision 198189)
+++ faith (working copy)
@@ -3,7 +3,7 @@
 #

 # PROVIDE: faith
-# REQUIRE: netif routing
+# REQUIRE: netif
 # KEYWORD: nojail

 . /etc/rc.subr
Index: stf
===================================================================
--- stf (revision 198189)
+++ stf (working copy)
@@ -3,7 +3,7 @@
 #

 # PROVIDE: stf
-# REQUIRE: netif routing
+# REQUIRE: netif
 # KEYWORD: nojail

 . /etc/rc.subr


attachment0 (202 bytes) Download Attachment

Re: Circular dependency in rc.d after r197527

by Doug Barton :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hiroki Sato wrote:
>  Thank you for pointing out it.  No objection from me.  The attached
>  patch should fix it.

Ok, done. Thanks for the quick reply. :)


Doug

--

        Improve the effectiveness of your Internet presence with
        a domain name makeover!    http://SupersetSolutions.com/

_______________________________________________
freebsd-rc@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-rc
To unsubscribe, send any mail to "freebsd-rc-unsubscribe@..."