Author: brd (doc,ports committer)
Date: Tue Feb 13 16:07:39 2018
New Revision: 329218
URL: https://svnweb.freebsd.org/changeset/base/329218

Log:
  Fix resolv to run when it should and not when it should not..
  
  Approved by:  manu
  Reported by:  manu
  Pointy hat to:        brd

Modified:
  head/etc/rc.d/resolv

Modified: head/etc/rc.d/resolv
==============================================================================
--- head/etc/rc.d/resolv        Tue Feb 13 15:55:31 2018        (r329217)
+++ head/etc/rc.d/resolv        Tue Feb 13 16:07:39 2018        (r329218)
@@ -34,12 +34,11 @@
 . /etc/rc.subr
 
 name="resolv"
+rcvar="resolv_enable"
 desc="Create /etc/resolv.conf from kenv"
 start_cmd="${name}_start"
 stop_cmd=':'
 
-load_rc_config $name
-
 # if the info is available via dhcp/kenv
 # build the resolv.conf
 #
@@ -60,3 +59,5 @@ resolv_start()
        fi
 }
 
+load_rc_config $name
+run_rc_command "$1"
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to