2018-09-28 19:11:09 +00:00
|
|
|
# Lorax Composer VHD (Azure, Hyper-V) output kickstart template
|
|
|
|
|
|
|
|
# Firewall configuration
|
|
|
|
firewall --enabled
|
|
|
|
|
|
|
|
# NOTE: The root account is locked by default
|
|
|
|
# Network information
|
|
|
|
network --bootproto=dhcp --onboot=on --activate
|
2019-04-12 19:23:20 +00:00
|
|
|
# NOTE: keyboard and lang can be replaced by blueprint customizations.locale settings
|
2018-09-28 19:11:09 +00:00
|
|
|
# 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 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
|
2019-11-09 00:47:08 +00:00
|
|
|
services --enabled=sshd,chronyd,waagent,cloud-init,cloud-init-local,cloud-config,cloud-final
|
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
|
|
|
|
|
2019-11-09 00:47:08 +00:00
|
|
|
# Restrict cloud-init to Azure datasource
|
|
|
|
cat > /etc/cloud/cloud.cfg.d/91-azure_datasource.cfg << EOF
|
|
|
|
# Azure Data Source config
|
|
|
|
datasource_list: [ Azure ]
|
|
|
|
datasource:
|
|
|
|
Azure:
|
|
|
|
apply_network_config: False
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Setup waagent to work with cloud-init
|
|
|
|
sed -i 's/Provisioning.Enabled=y/Provisioning.Enabled=n/g' /etc/waagent.conf
|
|
|
|
sed -i 's/Provisioning.UseCloudInit=n/Provisioning.UseCloudInit=y/g' /etc/waagent.conf
|
|
|
|
|
2018-10-10 12:56:49 +00:00
|
|
|
# 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
|
|
|
python3
|
|
|
|
net-tools
|
|
|
|
|
2019-11-09 00:47:08 +00:00
|
|
|
cloud-init
|
|
|
|
cloud-utils-growpart
|
|
|
|
gdisk
|
|
|
|
|
2018-10-10 12:56:49 +00:00
|
|
|
# NOTE lorax-composer will add the recipe packages below here, including the final %end
|