<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.6.4">
</HEAD>
<BODY>
I can not get the Kickstart commands correct to configure and enable ntpd instead of chronyd.  Here is my script for use with Fedora 19:<BR>
<BR>
<TT><FONT SIZE="2">auth       --enableshadow --passalgo sha512</FONT></TT><BR>
<TT><FONT SIZE="2">autopart   --type lvm</FONT></TT><BR>
<TT><FONT SIZE="2">bootloader --location mbr --boot-drive $disk</FONT></TT><BR>
<TT><FONT SIZE="2">clearpart  --all --initlabel --drives $disk</FONT></TT><BR>
<TT><FONT SIZE="2">firewall   --enable --service mdns,ssh</FONT></TT><BR>
<TT><FONT SIZE="2">firstboot  --disable</FONT></TT><BR>
<TT><FONT SIZE="2">ignoredisk --only-use $disk</FONT></TT><BR>
<TT><FONT SIZE="2">keyboard   --vckeymap us --xlayouts us</FONT></TT><BR>
<TT><FONT SIZE="2">lang         en_US.UTF-8</FONT></TT><BR>
<TT><FONT SIZE="2">network    --activate --bootproto static --device eth0 --gateway 192.168.$subnet.254 --hostname $host.hunter.org --ip 192.168.$subnet.$ip --nameserver 192.168.$subnet.11 --netmask 255.255.255.0 --noipv6</FONT></TT><BR>
<TT><FONT SIZE="2">repo       --name local-fedora  --baseurl http://192.168.$subnet.10/repos/fedora$releasever/fedora</FONT></TT><BR>
<TT><FONT SIZE="2">repo       --name local-updates --baseurl http://192.168.$subnet.10/repos/fedora$releasever/updates</FONT></TT><BR>
<TT><FONT SIZE="2">reboot</FONT></TT><BR>
<TT><FONT SIZE="2">rootpw     --iscrypted \$6\$6YuUd3dm5L5ALg25\$mOot78r5I7kNFPhNRcOuFmHHS3FO.vfetR.z7K6LfGEmIk6mMlWh72coTpbiPna5puEDDPvNYngGnFL3KCvGo.</FONT></TT><BR>
<TT><FONT SIZE="2">services   --enable ntpd</FONT></TT><BR>
<TT><FONT SIZE="2">text</FONT></TT><BR>
<TT><FONT SIZE="2">timezone   --ntpservers 192.168.$subnet.10 --utc America/Chicago</FONT></TT><BR>
<TT><FONT SIZE="2">url        --url http://192.168.$subnet.10/repos/fedora$releasever/iso</FONT></TT><BR>
<TT><FONT SIZE="2">user       --gecos "Local Administrator" --groups wheel --iscrypted --name local --password \$6\$6YuUd3dm5L5ALg25\$mOot78r5I7kNFPhNRcOuFmHHS3FO.vfetR.z7K6LfGEmIk6mMlWh72coTpbiPna5puEDDPvNYngGnFL3KCvGo.</FONT></TT><BR>
<TT><FONT SIZE="2">xconfig    --startxonboot</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">%packages</FONT></TT><BR>
<TT><FONT SIZE="2">@base-x</FONT></TT><BR>
<TT><FONT SIZE="2">@core</FONT></TT><BR>
<TT><FONT SIZE="2">@dial-up</FONT></TT><BR>
<TT><FONT SIZE="2">@firefox</FONT></TT><BR>
<TT><FONT SIZE="2">@fonts</FONT></TT><BR>
<TT><FONT SIZE="2">@gnome-desktop</FONT></TT><BR>
<TT><FONT SIZE="2">@hardware-support</FONT></TT><BR>
<TT><FONT SIZE="2">@input-methods</FONT></TT><BR>
<TT><FONT SIZE="2">@multimedia</FONT></TT><BR>
<TT><FONT SIZE="2">@printing</FONT></TT><BR>
<TT><FONT SIZE="2">@standard</FONT></TT><BR>
<TT><FONT SIZE="2">ntp</FONT></TT><BR>
<TT><FONT SIZE="2">qemu-guest-agent</FONT></TT><BR>
<TT><FONT SIZE="2">%end</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">%post</FONT></TT><BR>
<TT><FONT SIZE="2">  set -v</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2"># Configure the hosts file</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">cat >/etc/hosts <<EOD</FONT></TT><BR>
<TT><FONT SIZE="2">127.0.0.1        localhost.localdomain  localhost</FONT></TT><BR>
<TT><FONT SIZE="2">192.168.$subnet.10     host.hunter.org        host</FONT></TT><BR>
<TT><FONT SIZE="2">EOD</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2"># Configure the SSH directory for root</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">  mkdir /root/.ssh</FONT></TT><BR>
<TT><FONT SIZE="2">  chcon --type ssh_home_t /root/.ssh</FONT></TT><BR>
<TT><FONT SIZE="2">  chcon --user system_u   /root/.ssh</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2"># Configure the Yellowdog Updater Modified (yum)</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">  wget --output-document /etc/yum.repos.d/local-fedora.repo \</FONT></TT><BR>
<TT><FONT SIZE="2">    http://host.hunter.org/repos/local-fedora.repo                               # RedHat bug 984216</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">  wget --output-document /etc/yum.repos.d/local-updates.repo \</FONT></TT><BR>
<TT><FONT SIZE="2">    http://host.hunter.org/repos/local-updates.repo                              # RedHat bug 984216</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2"># yum-config-manager --add-repo <A HREF="http://host.hunter.org/repos/local-fedora.repo ">http://host.hunter.org/repos/local-fedora.repo </A>  # RedHat bug 984216</FONT></TT><BR>
<TT><FONT SIZE="2"># yum-config-manager --add-repo <A HREF="http://host.hunter.org/repos/local-updates.repo ">http://host.hunter.org/repos/local-updates.repo </A> # RedHat bug 984216</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">  yum-config-manager --disable fedora</FONT></TT><BR>
<TT><FONT SIZE="2">  yum-config-manager --disable updates</FONT></TT><BR>
<BR>
<TT><FONT SIZE="2">%end</FONT></TT><BR>
<BR>
What am I doing wrong?<BR>
<BR>
</BODY>
</HTML>