Message My kickstart file executes the following script (among others) after installation #!/bin/bash # Set SysV init scripts off="anacron apmd atd autofs gpm iptables irda isdn kdcrotate kudzu nscd nfs pcmcia rhnsd saslauthd sendmail sshd" on="ypbind rexec rlogin rsh time time-udp" for name in ${off}; do /sbin/chkconfig --del $name done for name in ${on}; do /sbin/chkconfig --add $name /sbin/chkconfig $name on done Most of the services are removed correctly (all the adds work fine as well). However nscd, rhnsd sendmail sshd are still there after the post installation script is finished. So some services are removed, other not. I can run the script after installation and everything works fine. Does anyone know why these links are not removed during the post installation phase? Thanks Tony Ladd ----------------------------------------------------- Anthony JC Ladd Professor: Chemical Engineering University of Florida PO Box 116005 Gainesville, Florida, 32611-6005 Tel: (352)-392-6509 Fax: (352)-392-9513 Email: ladd@xxxxxxxxxxx URL: http://ladd.che.ufl.edu