# Version = rawhide #Repos - fix this #repo --baseurl=file:///home/username/repo/rawhide/ #repo --name=rawhide --baseurl=file:///mnt/mirror/fedora/updates/10/i386 repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch # Perform the kickstart install in Text Mode. Installs are # performed in graphical mode by default. text #Security config network --bootproto=dhcp --device=eth0 --onboot=on firewall --enabled --port=22:tcp selinux --enforcing auth --useshadow --enablemd5 # make password: thincrust rootpw --iscrypted $1$uw6MV$m6VtUWPed4SqgoW6fKfTZ/ #Language keyboard us lang en_US.UTF-8 timezone US/Eastern #Boot zerombr bootloader --append="acpi=force audit=1" --location=mbr --timeout=3 #Partitions clearpart --all part / --fstype ext3 --ondisk sda --size 700 %packages --excludedocs @core # Things we don't want -sendmail # Missing from @core, but needed dhclient grub libcap-ng libcap-ng-utils policycoreutils rootfiles plymouth-scripts plymouth #required services irqbalance #optional services audit iptables iptables-ipv6 openssh-server postfix %end %post # Make plymouth happy so we can boot /usr/sbin/plymouth-set-default-theme text #turn on required services /sbin/chkconfig --level=3 network on /sbin/chkconfig --level=3 auditd on /sbin/chkconfig --level=3 crond on #turn on/off optional services /sbin/chkconfig --level=3 sshd on /sbin/chkconfig --level=3 postfix off %end