Displaying 1 result from an estimated 1 matches for "on_services".
2008 Apr 22
1
32-bit Centos 5.1 kickstart hangs on xen domU HVM installation
...--level 12345 $service off;
chkconfig --list $service;
done
cat <<EOF;
###############################################################################
## Turn on needed services in advance
##
###############################################################################
EOF
export ON_SERVICES="snmpd ntpd"
for service in $ON_SERVICES; do
chkconfig --level 12345 $service on;
chkconfig --list $service;
done
###############################################################################
## Update the Linux Kernel
##
################################################...