summaryrefslogtreecommitdiffstats
path: root/genome-repo/genome-repo/Guest.ks
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2008-07-24 11:25:49 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2008-07-24 11:26:38 -0400
commit74570d5e1b767436e16f033570cddecd49d4e153 (patch)
treec611292957bdf9d7cb1ecaa430a0fe60e3ce01b1 /genome-repo/genome-repo/Guest.ks
parent196f11472be2d63aea8d4a822ae4079a02959023 (diff)
downloadtools-74570d5e1b767436e16f033570cddecd49d4e153.tar.gz
tools-74570d5e1b767436e16f033570cddecd49d4e153.tar.xz
tools-74570d5e1b767436e16f033570cddecd49d4e153.zip
Minor fix to genome-repo Makefile
Diffstat (limited to 'genome-repo/genome-repo/Guest.ks')
-rw-r--r--genome-repo/genome-repo/Guest.ks63
1 files changed, 63 insertions, 0 deletions
diff --git a/genome-repo/genome-repo/Guest.ks b/genome-repo/genome-repo/Guest.ks
new file mode 100644
index 0000000..187aa4f
--- /dev/null
+++ b/genome-repo/genome-repo/Guest.ks
@@ -0,0 +1,63 @@
+#platform=x86, AMD64, or Intel EM64T
+# System authorization information
+auth --useshadow --enablemd5
+# System bootloader configuration
+bootloader --location=mbr
+# Partition clearing information
+clearpart --all --initlabel
+# Use text mode install
+text
+# Firewall configuration
+firewall --disabled
+# Run the Setup Agent on first boot
+firstboot --disable
+# System keyboard
+keyboard us
+# System language
+lang en_US
+# Use network installation
+url --url=$tree
+key --skip
+
+# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
+$yum_repo_stanza
+
+# Network information
+network --bootproto=dhcp --device=eth0 --onboot=on --noipv6
+# Reboot after installation
+reboot
+
+#Root password
+rootpw --iscrypted $1$z8ATNbdx$URqSRM3RkCgBCTIKD4Z3W.
+# SELinux configuration
+selinux --disabled
+# Do not configure the X Window System
+skipx
+# System timezone
+timezone America/New_York
+# Install OS instead of upgrade
+install
+# Clear the Master Boot Record
+zerombr
+
+# Magically figure out how to partition this thing
+%include /tmp/partinfo
+
+%pre
+# Auto partitioning
+SNIPPET::partition_select
+$kickstart_start
+
+%packages
+git
+puppet
+genome-firstboot
+
+%post
+FIRSTBOOT_CFG=/etc/sysconfig/genome-firstboot
+echo RUN_BOOTSTRAP=YES > $FIRSTBOOT_CFG
+echo export GENOME_REPO=$genome_repo >> $FIRSTBOOT_CFG
+echo export FQDN=$fqdn >> $FIRSTBOOT_CFG
+
+$yum_config_stanza
+$kickstart_done