nfs-utils/nfs-server.postconfig
Steve Dickson 01ad8e0700 Split out NFS server daemons into individual service files (bz 769879)
Signed-off-by: Steve Dickson <steved@redhat.com>
2012-05-15 14:22:42 -04:00

16 lines
287 B
Bash

#!/bin/sh
. /etc/sysconfig/nfs
#
# Enabled the RDMA server support if configured to do so.
#
# Load the module and then enable the server to listen
# on the given port
if [ -n "$RDMA_PORT" ]; then
/sbin/modprobe svcrdma
echo "rdma $RDMA_PORT" > /proc/fs/nfsd/portlist
fi
exit 0