Deleted Added
full compact
network.subr (61961) network.subr (63147)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $FreeBSD: head/etc/network.subr 61961 2000-06-22 17:40:53Z dillon $
3# $FreeBSD: head/etc/network.subr 63147 2000-07-14 13:03:36Z nbm $
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 501 unchanged lines hidden (view full) ---

513
514 case ${nfs_server_enable} in
515 [Yy][Ee][Ss])
516 if [ -r /etc/exports ]; then
517 echo -n ' mountd'
518
519 case ${weak_mountd_authentication} in
520 [Yy][Ee][Ss])
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 501 unchanged lines hidden (view full) ---

513
514 case ${nfs_server_enable} in
515 [Yy][Ee][Ss])
516 if [ -r /etc/exports ]; then
517 echo -n ' mountd'
518
519 case ${weak_mountd_authentication} in
520 [Yy][Ee][Ss])
521 mountd_flags="-n"
521 mountd_flags="${mountd_flags} -n"
522 ;;
523 esac
524
525 mountd ${mountd_flags}
526
527 case ${nfs_reserved_port_only} in
528 [Yy][Ee][Ss])
529 echo -n ' NFS on reserved port only=YES'

--- 153 unchanged lines hidden ---
522 ;;
523 esac
524
525 mountd ${mountd_flags}
526
527 case ${nfs_reserved_port_only} in
528 [Yy][Ee][Ss])
529 echo -n ' NFS on reserved port only=YES'

--- 153 unchanged lines hidden ---