From d81def80b00a3dbcb4f8980f4503c4d659b48a2a Mon Sep 17 00:00:00 2001
From: Roy Marples <roy@marples.name>
Date: Fri, 23 Nov 2007 12:04:11 +0000
Subject: Move /etc/conf.d/rc to /etc/rc.conf. Lowercase all configurable
 variables, non configurations remain uppercase. Replace rc_env_bool with
 rc_yesno. Split localmount info procfs (Linux) and dumpon, savecore (BSD)

---
 init.d/netmount | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'init.d/netmount')

diff --git a/init.d/netmount b/init.d/netmount
index f1603289..8742f9e0 100755
--- a/init.d/netmount
+++ b/init.d/netmount
@@ -59,7 +59,7 @@ start() {
 	[ -x /etc/init.d/rpcbind ] && pmap="rpcbind"
 
 	local x= fs=
-	for x in ${RC_NET_FS_LIST}; do
+	for x in ${net_fs_list}; do
 		case "${x}" in
 			nfs|nfs4)
     			# If the nfsmount script took care of the nfs filesystems,
@@ -89,7 +89,7 @@ stop() {
 	ebegin "Unmounting network filesystems"
 	. "${RC_LIBDIR}/sh/rc-mount.sh"
 
-	for x in ${RC_NET_FS_LIST} ; do
+	for x in ${net_fs_list} ; do
 		fs="${fs}${fs:+,}${x}"
 	done
 	if [ -n "${fs}" ]; then
@@ -98,7 +98,7 @@ stop() {
 
 	eindent
 	fs=
-	for x in ${RC_NET_FS_LIST}; do
+	for x in ${net_fs_list}; do
 		fs="${fs}${fs:+|}${x}"
 	done
 	[ -n "${fs}" ] && fs="^(${fs})$"
-- 
cgit v1.2.3