summaryrefslogtreecommitdiffstats
path: root/kickstarts
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-04-15 18:01:27 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-04-15 18:01:27 -0400
commit2eabc9130522acc1e1de034ec062338572076a02 (patch)
treedfb7e90d7931255c90d3e9b342898312b8c4d3a8 /kickstarts
parent2ccbb4b130afac3d1707433b3988259ea109db7f (diff)
downloadthird_party-cobbler-2eabc9130522acc1e1de034ec062338572076a02.tar.gz
third_party-cobbler-2eabc9130522acc1e1de034ec062338572076a02.tar.xz
third_party-cobbler-2eabc9130522acc1e1de034ec062338572076a02.zip
Add missing file
Diffstat (limited to 'kickstarts')
-rw-r--r--kickstarts/sample_end.ks55
1 files changed, 55 insertions, 0 deletions
diff --git a/kickstarts/sample_end.ks b/kickstarts/sample_end.ks
new file mode 100644
index 0000000..b856a3d
--- /dev/null
+++ b/kickstarts/sample_end.ks
@@ -0,0 +1,55 @@
+# kickstart template for Fedora 8 and later.
+# (includes %end blocks)
+# do not use with earlier distros
+
+#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 --enabled
+# Run the Setup Agent on first boot
+firstboot --disable
+# System keyboard
+keyboard us
+# System language
+lang en_US
+# Use network installation
+url --url=$tree
+# 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
+# Reboot after installation
+reboot
+
+#Root password
+rootpw --iscrypted \$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.
+# 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
+SNIPPET::partition_select
+$kickstart_start
+
+
+%packages
+%end
+
+%post
+$yum_config_stanza
+$kickstart_done
+%end