Finalmente eu criei um script init quase fictício, inserido no S15 (veja em /etc/rc3.d/), já que o módulo é carregado no S14 (nfslock) e usado no S25 (netfs).
/etc/init.d/sunrpc_tuning
:
#!/bin/sh
#
# sunrpc_tuning Tunes /proc/sys/sunrpc (launched after lockd)
#
# chkconfig: 345 15 85
# description: set values to sunrpc after module is loaded
# probe: true
case "$1" in
start)
echo "Setting sunrpc.tcp_slot_table_entries ..."
/sbin/sysctl -w sunrpc.tcp_slot_table_entries=128
;;
*) ;;
esac
Então:
chkconfig --add sunrpc_tuning