aboutsummaryrefslogtreecommitdiff
path: root/roles/libvirt/templates/kickstart/f38.ks
blob: 0d4c40ed7d4adf444b7c402d64ec5b37f91c08bc (plain)
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
#version=F38
text
reboot

# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8

# Use CDROM installation media
cdrom

%packages
@^server-product-environment

%end

# Network information
network  --bootproto=dhcp --device=enp1s0 --noipv6 --activate
network  --hostname={{ libvirt_kickstart_hostname }}

# Run the Setup Agent on first boot
firstboot --enable

# Generated using Blivet version 3.7.1
ignoredisk --only-use=vda
autopart
# Partition clearing information
clearpart --none --initlabel

# System timezone
timezone {{ libvirt_kickstart_timezone }} --utc

# Root password
rootpw --iscrypted {{ libvirt_kickstart_root_password | password_hash("sha512") }}

%post
mkdir -m0700 /root/.ssh/

cat <<EOF >/root/.ssh/authorized_keys
{% for ssh_key in libvirt_kickstart_root_ssh_keys %}
{{ ssh_key }}
{% endfor %}
EOF

chmod 0600 /root/.ssh/authorized_keys

restorecon -R /root/.ssh/

{{ libvirt_kickstart_allow_root_ssh }}

%end