1 |
unnilennium |
1.1 |
# System authorization information |
2 |
|
|
auth --enableshadow --passalgo=sha512 |
3 |
|
|
# Use CDROM installation media |
4 |
|
|
cdrom |
5 |
|
|
# Use graphical install |
6 |
|
|
#graphical |
7 |
|
|
#%include /usr/share/anaconda/interactive-defaults.ks |
8 |
|
|
#install |
9 |
|
|
ignoredisk --only-use=vda |
10 |
|
|
# Keyboard layouts |
11 |
|
|
keyboard --xlayouts='us' |
12 |
|
|
# System language |
13 |
|
|
lang en_US.UTF-8 |
14 |
|
|
selinux --disabled |
15 |
|
|
#firewall --disabled |
16 |
|
|
#services --enabled=NetworkManager,sshd |
17 |
|
|
#eula --agreed |
18 |
|
|
#reboot |
19 |
|
|
|
20 |
|
|
|
21 |
|
|
# System timezone |
22 |
|
|
timezone America/New_York --isUtc |
23 |
|
|
# System bootloader configuration |
24 |
|
|
bootloader --append=" crashkernel=auto quiet" --location=mbr --boot-drive=vda |
25 |
|
|
|
26 |
|
|
autopart --type=lvm |
27 |
|
|
# Partition clearing information |
28 |
|
|
clearpart --all --initlabel --drives=vda |
29 |
|
|
|
30 |
|
|
|
31 |
|
|
bootloader --location=mbr |
32 |
|
|
zerombr |
33 |
|
|
#part swap --asprimary --fstype="swap" --size=1024 |
34 |
|
|
#part /boot --fstype xfs --size=200 |
35 |
|
|
#part pv.01 --size=1 --grow |
36 |
|
|
#volgroup rootvg01 pv.01 |
37 |
|
|
#logvol / --fstype xfs --name=lv01 --vgname=rootvg01 --size=1 --grow |
38 |
|
|
|
39 |
|
|
services --disabled=lm_sensors |
40 |
|
|
%packages |
41 |
|
|
@^minimal |
42 |
|
|
@base |
43 |
|
|
@core |
44 |
|
|
-chrony |
45 |
|
|
-kexec-tools |
46 |
|
|
|
47 |
|
|
%end |
48 |
|
|
|
49 |
|
|
|
50 |
|
|
# pre script could be inserted there to handle partitionning |
51 |
|
|
|
52 |
|
|
%post --log=/root/ks-post.log --interpreter=/usr/bin/bash |
53 |
|
|
# before reboot performing post-install |
54 |
|
|
# this is for first alpha iso. we should put this in anaconda |
55 |
|
|
# and / or handle possible upgrade later |
56 |
|
|
/sbin/rsyslogd; |
57 |
|
|
sleep 2; |
58 |
|
|
/sbin/e-smith/signal-event post-install; |
59 |
|
|
touch /forcequotacheck |
60 |
|
|
|
61 |
|
|
%end |