2018-05-03 16:14:11 +00:00
|
|
|
# Lorax Composer filesystem output kickstart template
|
|
|
|
|
|
|
|
# Firewall configuration
|
|
|
|
firewall --enabled
|
|
|
|
|
2018-08-08 22:46:16 +00:00
|
|
|
# NOTE: The root account is locked by default
|
2018-05-03 16:14:11 +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
|
2018-08-08 15:44:01 +00:00
|
|
|
# System bootloader configuration (unpartitioned fs image doesn't use a bootloader)
|
2018-05-03 16:14:11 +00:00
|
|
|
bootloader --location=none
|
|
|
|
|
|
|
|
%post
|
|
|
|
# Remove random-seed
|
|
|
|
rm /var/lib/systemd/random-seed
|
|
|
|
%end
|
|
|
|
|
2018-05-11 00:00:21 +00:00
|
|
|
# NOTE Do NOT add any other sections after %packages
|
|
|
|
%packages --nocore
|
|
|
|
# Packages requires to support this output format go here
|
|
|
|
policycoreutils
|
2018-05-03 16:14:11 +00:00
|
|
|
|
2018-08-08 22:46:16 +00:00
|
|
|
# NOTE lorax-composer will add the blueprint packages below here, including the final %end
|