Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/etc/rc.d Pull up following revision(s) (requested by naka...



details:   https://anonhg.NetBSD.org/src/rev/f621f59e7a41
branches:  netbsd-9
changeset: 458148:f621f59e7a41
user:      martin <martin%NetBSD.org@localhost>
date:      Thu Aug 08 11:48:58 2019 +0000

description:
Pull up following revision(s) (requested by nakayama in ticket #30):

        etc/rc.d/autounmountd: revision 1.2
        etc/rc.d/ip6addrctl: revision 1.3
        etc/rc.d/automountd: revision 1.2
        etc/rc.d/automount: revision 1.2

Add $_rc_subr_loaded before ". /etc/rc.subr" for speedup and consistency.

diffstat:

 etc/rc.d/automount    |  4 ++--
 etc/rc.d/automountd   |  4 ++--
 etc/rc.d/autounmountd |  2 +-
 etc/rc.d/ip6addrctl   |  2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diffs (62 lines):

diff -r 0f4247ac588c -r f621f59e7a41 etc/rc.d/automount
--- a/etc/rc.d/automount        Thu Aug 08 05:54:48 2019 +0000
+++ b/etc/rc.d/automount        Thu Aug 08 11:48:58 2019 +0000
@@ -1,13 +1,13 @@
 #!/bin/sh
 #
-# $NetBSD: automount,v 1.1 2018/01/09 03:31:14 christos Exp $
+# $NetBSD: automount,v 1.1.6.1 2019/08/08 11:48:58 martin Exp $
 #
 
 # PROVIDE: automount
 # REQUIRE: automountd
 # KEYWORD: nojail shutdown
 
-. /etc/rc.subr
+$_rc_subr_loaded . /etc/rc.subr
 
 name="automount"
 rcvar="autofs"
diff -r 0f4247ac588c -r f621f59e7a41 etc/rc.d/automountd
--- a/etc/rc.d/automountd       Thu Aug 08 05:54:48 2019 +0000
+++ b/etc/rc.d/automountd       Thu Aug 08 11:48:58 2019 +0000
@@ -1,13 +1,13 @@
 #!/bin/sh
 #
-# $NetBSD: automountd,v 1.1 2018/01/09 03:31:14 christos Exp $
+# $NetBSD: automountd,v 1.1.6.1 2019/08/08 11:48:58 martin Exp $
 #
 
 # PROVIDE: automountd
 # REQUIRE: DAEMON
 # KEYWORD: nojail
 
-. /etc/rc.subr
+$_rc_subr_loaded . /etc/rc.subr
 
 name="automountd"
 rcvar="autofs"
diff -r 0f4247ac588c -r f621f59e7a41 etc/rc.d/autounmountd
--- a/etc/rc.d/autounmountd     Thu Aug 08 05:54:48 2019 +0000
+++ b/etc/rc.d/autounmountd     Thu Aug 08 11:48:58 2019 +0000
@@ -7,7 +7,7 @@
 # REQUIRE: DAEMON
 # KEYWORD: nojail
 
-. /etc/rc.subr
+$_rc_subr_loaded . /etc/rc.subr
 
 name="autounmountd"
 rcvar="autofs"
diff -r 0f4247ac588c -r f621f59e7a41 etc/rc.d/ip6addrctl
--- a/etc/rc.d/ip6addrctl       Thu Aug 08 05:54:48 2019 +0000
+++ b/etc/rc.d/ip6addrctl       Thu Aug 08 11:48:58 2019 +0000
@@ -6,7 +6,7 @@
 # PROVIDE: ip6addrctl
 # REQUIRE: root bootconf mountcritlocal tty
 
-. /etc/rc.subr
+$_rc_subr_loaded . /etc/rc.subr
 
 name="ip6addrctl"
 rcvar="ip6addrctl"



Home | Main Index | Thread Index | Old Index