summaryrefslogtreecommitdiffstats
path: root/genome-respin/cobbler/Genome.ks
diff options
context:
space:
mode:
Diffstat (limited to 'genome-respin/cobbler/Genome.ks')
-rw-r--r--genome-respin/cobbler/Genome.ks62
1 files changed, 62 insertions, 0 deletions
diff --git a/genome-respin/cobbler/Genome.ks b/genome-respin/cobbler/Genome.ks
new file mode 100644
index 0000000..8866eaa
--- /dev/null
+++ b/genome-respin/cobbler/Genome.ks
@@ -0,0 +1,62 @@
+#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
+# Network Manager breaks networking on F8
+services --disabled=NetworkManager
+# 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.
+# TODO: replace this with $yum_repo_stanza
+$yum_repo_stanza
+
+# Network information
+network --bootproto=dhcp --device=eth0 --onboot=on
+# 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
+genome-repo
+
+%post
+$yum_config_stanza
+$kickstart_done
+
+/sbin/chkconfig --add genome-repo-bootstrap
+/sbin/chkconfig genome-repo-bootstrap on