#!/bin/sh
#
# nfs           This shell script takes care of starting and stopping
#               the NFS services.
#
# chkconfig: 35 60 20
# description: NFS is a popular protocol for file sharing across TCP/IP \
#              networks. This service provides NFS server functionality, \
#              which is configured via the /etc/exports file.

chkconfig:后面跟三个参数
第一个指定在那种runlevel下启动 - 没有指定
第二个指定开机启动时的启动循序,在rc3.d和rc5.d下产生启动脚本S60nfs
第三个指定关闭循序,在rc0.d,rc1.d,rc2.d,rc4.d,rc6.d下产生K20nfs
S:代表start
K:代表kill