-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrocky8.cfg
66 lines (55 loc) · 1.21 KB
/
rocky8.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
install
url --url http://repo/CentOS/DVD/Rocky-8
# text
# reboot
poweroff
lang en_US.UTF-8
keyboard us
network --onboot yes --device eth0 --bootproto dhcp --ipv6 auto
rootpw --iscrypted $6$yourrootpasswordhere
authconfig --enableshadow --passalgo=sha512
firewall --disabled
selinux --disabled
timezone --utc America/New_York
zerombr
clearpart --all --initlabel
part /boot --fstype=ext4 --asprimary --size=500
part swap --asprimary --size=512
part / --fstype=ext4 --asprimary --grow --size=1
bootloader --location=mbr --driveorder=vda --append=" crashkernel=auto quiet" --timeout=0
repo --name="AppStream" --baseurl=http://repo/CentOS/DVD/Rocky-8/AppStream --cost=100
%packages
@^minimal-environment
python36
wget
ksh
dos2unix
logwatch
tar
postfix
bind-utils
bc
-kdump
-iwl100-firmware
-iwl1000-firmware
-iwl105-firmware
-iwl135-firmware
-iwl2000-firmware
-iwl2030-firmware
-iwl3160-firmware
-iwl3945-firmware
-iwl4965-firmware
-iwl5000-firmware
-iwl5150-firmware
-iwl6000-firmware
-iwl6000g2a-firmware
-iwl6050-firmware
-iwl7260-firmware
%end
%addon com_redhat_kdump --disable --reserve-mb='auto'
%end
%post
exec 1>/root/ks-post.log 2>&1
tail -f /root/ks-post.log > /dev/console &
alternatives --set python /usr/bin/python3
%end