text/plain created on 2020-10-09 17:12:50.852131
Edit as new paste
Get the raw version
Compare to previous version
| #version=RHEL8
ignoredisk --only-use=sda
# System bootloader configuration
bootloader --append=" crashkernel=auto console=tty0 console=ttyS1,115200n8" --location=mbr --boot-drive=sda
# Partition clearing information
clearpart --all --initlabel --drives=sda
# Use graphical install
text
# Use CDROM installation media
cdrom
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network --bootproto=static --device=eno1 --gateway=10.48.50.254 --ip=10.48.50.111 --nameserver=10.38.5.26,1.11.5.19 --netmask=255.255.255.0 --noipv6 --activate
network --bootproto=dhcp --device=eno2 --onboot=off --ipv6=auto
network --bootproto=dhcp --device=eno3 --onboot=off --ipv6=auto
network --bootproto=dhcp --device=eno4 --onboot=off --ipv6=auto
network --hostname=pctt-hv12.roq.distributed-ci.io
repo --name="AppStream" --baseurl=file:///run/install/repo/AppStream
# Root password
rootpw --iscrypted $6$y06lzJ98bwmIiB5i$tYIyCOczZwT9Bdul2zyoKd5YUjKVfgV.JyKmLK4tfDwLVhMrxQfmKKLPjAMxA9AfHQ7mf72M2vaCmMkH3lVEl.
# Run the Setup Agent on first boot
firstboot --disable
# Do not configure the X Window System
skipx
# System services
services --enabled="chronyd"
# System timezone
timezone Etc/GMT --isUtc --ntpservers=0.europe.pool.ntp.org,1.europe.pool.ntp.org
# Disk partitioning information
part /boot --fstype="ext2" --label=boot --ondisk=sda --size=1024
part / --fstype="ext4" --label=root --ondisk=sda --size=51200
part /var --fstype="ext4" --label=var --ondisk=sda --grow
%packages
@^minimal-environment
kexec-tools
%end
%addon com_redhat_kdump --enable --reserve-mb='auto'
%end
%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end
%post --log=/root/ks-post.log
yum -y install https://packages.distributed-ci.io/dci-release.el7.noarch.rpm
yum -y update
yum -y install dci-sshpubkeys
%end
|