Blame SOURCES/nfs-server.postconfig

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