2018-09-28 19:11:09 +00:00
|
|
|
# Lorax Composer VHD (Azure, Hyper-V) output kickstart template
|
|
|
|
|
|
|
|
# Firewall configuration
|
|
|
|
firewall --enabled
|
|
|
|
|
2018-10-02 21:32:59 +00:00
|
|
|
# NOTE: The root account is locked by default
|
2018-09-28 19:11:09 +00:00
|
|
|
# Network information
|
|
|
|
network --bootproto=dhcp --onboot=on --activate
|
|
|
|
# System keyboard
|
|
|
|
keyboard --xlayouts=us --vckeymap=us
|
|
|
|
# System language
|
|
|
|
lang en_US.UTF-8
|
|
|
|
# SELinux configuration
|
|
|
|
selinux --enforcing
|
|
|
|
# Installation logging level
|
|
|
|
logging --level=info
|
|
|
|
# Shutdown after installation
|
|
|
|
shutdown
|
|
|
|
# System timezone
|
|
|
|
timezone US/Eastern
|
|
|
|
# System bootloader configuration
|
2018-10-10 12:56:49 +00:00
|
|
|
bootloader --location=mbr --append="no_timer_check console=ttyS0,115200n8 earlyprintk=ttyS0,115200 rootdelay=300 net.ifnames=0"
|
2019-02-13 00:57:21 +00:00
|
|
|
# Add platform specific partitions
|
2019-02-14 01:03:51 +00:00
|
|
|
reqpart --add-boot
|
2018-09-28 19:11:09 +00:00
|
|
|
|
|
|
|
# Basic services
|
2018-10-10 12:56:49 +00:00
|
|
|
services --enabled=sshd,chronyd,waagent
|
2018-09-28 19:11:09 +00:00
|
|
|
|
|
|
|
%post
|
|
|
|
# Remove random-seed
|
|
|
|
rm /var/lib/systemd/random-seed
|
2018-10-05 18:27:28 +00:00
|
|
|
|
|
|
|
# Clear /etc/machine-id
|
|
|
|
rm /etc/machine-id
|
|
|
|
touch /etc/machine-id
|
2018-10-10 12:56:49 +00:00
|
|
|
|
2019-02-19 00:52:49 +00:00
|
|
|
# Remove the rescue kernel and image to save space
|
|
|
|
rm -f /boot/*-rescue*
|
|
|
|
|
2018-10-10 12:56:49 +00:00
|
|
|
# This file is required by waagent in RHEL, but compatible with NetworkManager
|
|
|
|
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
|
|
|
DEVICE=eth0
|
|
|
|
ONBOOT=yes
|
|
|
|
BOOTPROTO=dhcp
|
|
|
|
TYPE=Ethernet
|
|
|
|
USERCTL=yes
|
|
|
|
PEERDNS=yes
|
|
|
|
IPV6INIT=no
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Add Hyper-V modules into initramfs
|
|
|
|
cat > /etc/dracut.conf.d/10-hyperv.conf << EOF
|
|
|
|
add_drivers+=" hv_vmbus hv_netvsc hv_storvsc "
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Regenerate the intramfs image
|
|
|
|
dracut -f -v --persistent-policy by-uuid
|
|
|
|
%end
|
|
|
|
|
|
|
|
%addon com_redhat_kdump --disable
|
2018-09-28 19:11:09 +00:00
|
|
|
%end
|
|
|
|
|
|
|
|
%packages
|
|
|
|
kernel
|
2018-11-27 21:56:00 +00:00
|
|
|
selinux-policy-targeted
|
2018-09-28 19:11:09 +00:00
|
|
|
|
|
|
|
chrony
|
|
|
|
|
|
|
|
WALinuxAgent
|
|
|
|
|
2018-10-10 12:56:49 +00:00
|
|
|
# Requirements of WALinuxAgent
|
|
|
|
python3
|
|
|
|
net-tools
|
|
|
|
|
2018-09-28 19:11:09 +00:00
|
|
|
# NOTE lorax-composer will add the recipe packages below here, including the final %end
|