summaryrefslogtreecommitdiff
path: root/other/kickstarts/handmade/Centos7-64.cfg
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2016-09-16 20:59:06 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2016-09-16 20:59:06 +0200
commitcde82ec07f72c988accdd18619f94c9db5fb177a (patch)
tree5f5905bb79444fe0905193e47c32236a488d2a7e /other/kickstarts/handmade/Centos7-64.cfg
parent3df750c466fceca80ac7f16694d59c6a8a13ba47 (diff)
downloadcentosauto-master.tar.gz
centosauto-master.tar.bz2
added another automatized approach using virsh toolsHEADmaster
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
+