解决方法
如果查看/etc/init.d/network的“chkconfig”行,您将看到网络的起始优先级为“10”.
/etc/init.d/yourscript: #!/bin/bash # # yourscript short description # # chkconfig: 2345 9 20 # description: long description case "$1" in start) Do your thing !!! chkconfig yourscript off ;; stop|status|restart|reload|force-reload) # do nothing ;; esac
然后运行chkconfig yourscript on以使其在启动时运行.脚本中的chkconfig yourscript应禁用它在任何后续引导上运行.
某些版本的CentOS / RHEL / Fedora有一个你可以尝试使用的“firstboot”程序,但这似乎很痛苦.
您确定无法在kickstart中的%post中运行网络重新配置脚本吗?我就是做这个的.