nfs-utils/nfs-server.preconfig
Steve Dickson c1f844827f - Added StandardError=syslog+console to all the service files
so startup errors will be logged.
- Changed exportfs to only log errors on existing /etc/export.d
  directory, which eliminates a needless syslog entry.
- Automount /proc/fs/nfsd for rpc.nfsd

Signed-off-by: Steve Dickson <steved@redhat.com>
2011-08-24 14:38:38 -04:00

11 lines
168 B
Bash

#!/bin/bash
. /etc/sysconfig/nfs
# Set v4 grace period if requested
if [ -n "$NFSD_V4_GRACE" ]; then
echo "$NFSD_V4_GRACE" > /proc/fs/nfsd/nfsv4gracetime
fi
exit 0