mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 04:43:32 +00:00
Move "mount -a -t nfs" *after* network daemons,
must be at least after named & gated for proper name resolution.
This commit is contained in:
parent
712b66d518
commit
6fc95dbcaa
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=958
6
etc/rc
6
etc/rc
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $Id: rc,v 1.12 1993/12/30 18:19:17 jkh Exp $
|
||||
# $Id: rc,v 1.13 1994/01/04 18:06:18 ache Exp $
|
||||
# From: @(#)rc 5.27 (Berkeley) 6/5/91
|
||||
|
||||
# System startup script run by init on autoboot
|
||||
@ -73,8 +73,6 @@ adjkerntz -i
|
||||
echo 'starting network'
|
||||
. /etc/netstart
|
||||
|
||||
mount -a -t nfs >/dev/null 2>&1 & # XXX shouldn't need background
|
||||
|
||||
# clean up left-over files
|
||||
rm -f /etc/nologin
|
||||
rm -f /var/spool/uucp/LCK.*
|
||||
@ -201,6 +199,8 @@ fi
|
||||
echo -n ' inetd'; inetd
|
||||
echo '.'
|
||||
|
||||
mount -a -t nfs >/dev/null 2>&1 & # XXX shouldn't need background
|
||||
|
||||
sh /etc/rc.local
|
||||
|
||||
date
|
||||
|
Loading…
Reference in New Issue
Block a user