summaryrefslogtreecommitdiff
path: root/other/kickstarts/handmade/Centos7-64.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'other/kickstarts/handmade/Centos7-64.cfg')
-rw-r--r--other/kickstarts/handmade/Centos7-64.cfg32
1 files changed, 32 insertions, 0 deletions
diff --git a/other/kickstarts/handmade/Centos7-64.cfg b/other/kickstarts/handmade/Centos7-64.cfg
new file mode 100644
index 0000000..b985f80
--- /dev/null
+++ b/other/kickstarts/handmade/Centos7-64.cfg
@@ -0,0 +1,32 @@
+#version=RHEL7
+# System authorization information
+auth --enableshadow --passalgo=sha512
+
+# Use CDROM installation media
+cdrom
+# Run the Setup Agent on first boot
+firstboot --enable
+ignoredisk --only-use=vda
+# Keyboard layouts
+keyboard --vckeymap=us --xlayouts='us'
+# System language
+lang en_US.UTF-8
+
+# Network information
+network --bootproto=dhcp --device=eth0 --onboot=off --ipv6=auto
+network --hostname=centos7test
+# Root password
+rootpw --iscrypted $6$3M1tV8rDh8wtW390$g0hBugm3NBQZrYm7cBL4XfARtvuqjzEI1kHBt965W/Hhrus4VteDumTQoLCiISjbTrv1Jnzqs.GWHtlh3Ewkh.
+# System timezone
+timezone America/New_York --isUtc
+# System bootloader configuration
+bootloader --location=mbr --boot-drive=vda
+autopart --type=lvm
+# Partition clearing information
+clearpart --none --initlabel
+
+%packages
+@core
+
+%end
+