mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
s/grep/grep -q
Submitted by: ru
This commit is contained in:
parent
f68c4d880f
commit
b4479f319e
1 changed files with 1 additions and 1 deletions
2
etc/rc
2
etc/rc
|
|
@ -201,7 +201,7 @@ case ${ipv6_enable} in
|
|||
esac
|
||||
|
||||
# Mount NFS filesystems if present in /etc/fstab
|
||||
if mount -d -a -t nfs | grep nfs >/dev/null 2>&1; then
|
||||
if mount -d -a -t nfs | grep -q nfs >/dev/null 2>&1; then
|
||||
echo -n "Mounting NFS file systems"
|
||||
mount -a -t nfs
|
||||
echo .
|
||||
|
|
|
|||
Loading…
Reference in a new issue