Add back nfs partition display if show_remote_fs is on.

As requested by Grant.
This commit is contained in:
perry 2003-12-08 01:17:37 +00:00
parent 089b8ee471
commit 16a3b1f9cc

View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $NetBSD: daily,v 1.54 2003/12/07 22:22:15 perry Exp $ # $NetBSD: daily,v 1.55 2003/12/08 01:17:37 perry Exp $
# @(#)daily 8.2 (Berkeley) 1/25/94 # @(#)daily 8.2 (Berkeley) 1/25/94
# #
@ -140,7 +140,11 @@ if checkyesno check_uucp && \
fi fi
if checkyesno check_disks; then if checkyesno check_disks; then
df -hil -t nokernfs,procfs > $TMP if checkyesno show_remote_fs; then
df -hi -t nokernfs,procfs > $TMP
else
df -hil -t nokernfs,procfs > $TMP
fi
if [ -s /etc/dumpdates ] ; then if [ -s /etc/dumpdates ] ; then
dump -W > $TMP2 dump -W > $TMP2
fi fi