summaryrefslogtreecommitdiffstats
path: root/genome-respin/cobbler/Genome.ks
diff options
context:
space:
mode:
authorMatthew Hicks <mhicks@mhicks-host.usersys.redhat.com>2008-07-11 08:56:32 -0400
committerMatthew Hicks <mhicks@mhicks-host.usersys.redhat.com>2008-07-11 08:56:32 -0400
commitb446b36dd1ee0a0b06ba0067d053b900e70f827a (patch)
treee6b6ea6db1e8ede1d69e05ce6022a8e6105a381b /genome-respin/cobbler/Genome.ks
parent53b9a70dee2458320cc79f7a2723ca374872e336 (diff)
downloadtools-b446b36dd1ee0a0b06ba0067d053b900e70f827a.tar.gz
tools-b446b36dd1ee0a0b06ba0067d053b900e70f827a.tar.xz
tools-b446b36dd1ee0a0b06ba0067d053b900e70f827a.zip
Adding initial cobbler priming data
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