-
Notifications
You must be signed in to change notification settings - Fork 2
/
ks-base.cfg
42 lines (36 loc) · 1001 Bytes
/
ks-base.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#version=DEVEL
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use text mode install
text
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network --bootproto=dhcp --device=eno16780032 --onboot=off --ipv6=auto
network --hostname=localhost.localdomain
# Root password
rootpw --iscrypted $6$kTzIkxbgwjSEGiwR$4xEApAb0.BQustWAEeKQmMpOUFv.XGPI4QUIQ0eVFMh6tCuXMaJ1e9OBfA5R3SWaJvT37HvxrcE2pkkNwHYAR0
# Do not configure the X Window System
skipx
# System timezone
timezone Etc/UTC --isUtc
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
autopart --type=lvm
# Partition clearing information
clearpart --all --initlabel --drives=sda
%packages
@core
kexec-tools
wget
atop
%end
%addon com_redhat_kdump --enable --reserve-mb='auto'
%end