简单制作chkconfig 启动文件

1.在/etc/init.d/ 目录下创建一个kang文件
vi /etc/init.d/kang
# chkconfig: 2345 24 76          
#description: This is TEST
echo my name is mingkang
~

备注:chkcconfig:2345 24 76
第一列2345:为系统的启动级别,默认都为on   
第二列24:为服务启动数(可随意)
第三列76:为服务关闭数(可随意)
数字函意如下:
[root@localhost rc3.d]# pwd
/etc/rc.d/rc3.d
[root@localhost rc3.d]# ll | grep kang
lrwxrwxrwx  1 root root 14 May  7 20:16 S24kang -> ../init.d/kang

2.修改脚本可执行权限
[root@localhost init.d]# chmod +x kang

3.添加到chkconfig服务中
[root@localhost init.d]# chkconfig --add kang
[root@localhost init.d]# chkconfig | grep kang
kang            0:off   1:off   2:on    3:on    4:on    5:on    6:off