170 lines
3.8 KiB
INI
170 lines
3.8 KiB
INI
# Generated by pykickstart v3.62
|
|
#version=DEVEL
|
|
# Firewall configuration
|
|
firewall --disabled
|
|
# Run the Setup Agent on first boot
|
|
firstboot --reconfig
|
|
# Keyboard layouts
|
|
keyboard --xlayouts='ch (fr)'
|
|
# System language
|
|
lang en_US.UTF-8
|
|
# Network information
|
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
|
# Shutdown after installation
|
|
shutdown
|
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
|
# Root password
|
|
rootpw --iscrypted --lock locked
|
|
# SELinux configuration
|
|
selinux --disabled
|
|
# System services
|
|
services --enabled="NetworkManager,systemd-resolved"
|
|
# System timezone
|
|
timezone Europe/Paris --utc
|
|
# Use network installation
|
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
|
# System bootloader configuration
|
|
bootloader --location=none --timeout=1
|
|
# Clear the Master Boot Record
|
|
zerombr
|
|
# Partition clearing information
|
|
clearpart --all --initlabel
|
|
# Disk partitioning information
|
|
part / --fstype="ext4" --size=5120
|
|
part / --size=8576
|
|
|
|
%post --logfile=/mnt/sysimage/root/post.log
|
|
|
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
|
dnf update -y # Update the system
|
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Unsure it is actually useful
|
|
|
|
%end
|
|
|
|
%post --logfile=/mnt/sysimage/root/post-live-core.log
|
|
|
|
# Enable livesys services
|
|
systemctl enable livesys.service
|
|
systemctl enable livesys-late.service
|
|
|
|
# enable tmpfs for /tmp
|
|
systemctl enable tmp.mount
|
|
|
|
# make it so that we don't do writing to the overlay for things which
|
|
# are just tmpdirs/caches
|
|
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
|
|
cat >> /etc/fstab << EOF
|
|
vartmp /var/tmp tmpfs defaults 0 0
|
|
EOF
|
|
|
|
# work around for poor key import UI in PackageKit
|
|
rm -f /var/lib/rpm/__db*
|
|
echo "Packages within this LiveCD"
|
|
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
|
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
rm -f /var/lib/rpm/__db*
|
|
|
|
# go ahead and pre-make the man -k cache (#455968)
|
|
/usr/bin/mandb
|
|
|
|
# make sure there aren't core files lying around
|
|
rm -f /core*
|
|
|
|
# remove random seed, the newly installed instance should make it's own
|
|
rm -f /var/lib/systemd/random-seed
|
|
|
|
# convince readahead not to collect
|
|
# FIXME: for systemd
|
|
|
|
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
|
| tee /etc/.updated >/var/.updated
|
|
|
|
# Drop the rescue kernel and initramfs, we don't need them on the live media itself.
|
|
# See bug 1317709
|
|
rm -f /boot/*-rescue*
|
|
|
|
# Disable network service here, as doing it in the services line
|
|
# fails due to RHBZ #1369794
|
|
systemctl disable network
|
|
|
|
# Remove machine-id on pre generated images
|
|
rm -f /etc/machine-id
|
|
touch /etc/machine-id
|
|
|
|
%end
|
|
|
|
%post --logfile=/mnt/sysimage/root/post-live-session.log
|
|
|
|
# set livesys session type
|
|
sed -i 's/^livesys_session=.*/livesys_session="gnome"/' /etc/sysconfig/livesys
|
|
|
|
%end
|
|
|
|
%packages --exclude-weakdeps
|
|
@anaconda-tools
|
|
NetworkManager
|
|
NetworkManager-config-connectivity-fedora
|
|
aajohan-comfortaa-fonts
|
|
audit
|
|
basesystem
|
|
bash
|
|
coreutils
|
|
curl
|
|
dhcp-client
|
|
dnf5
|
|
dnf5-plugins
|
|
dracut
|
|
dracut-config-rescue
|
|
dracut-live
|
|
e2fsprogs
|
|
fedora-remix-logos
|
|
filesystem
|
|
firewalld
|
|
fwupd
|
|
generic-logos
|
|
generic-release
|
|
generic-release-common
|
|
generic-release-notes
|
|
glibc
|
|
glibc-all-langpacks
|
|
hostname
|
|
initial-setup
|
|
iproute
|
|
iputils
|
|
kbd
|
|
kernel
|
|
kernel-modules
|
|
kernel-modules-extra
|
|
less
|
|
libusb
|
|
livesys-scripts
|
|
man-db
|
|
nano
|
|
ncurses
|
|
openssh-clients
|
|
openssh-server
|
|
parted
|
|
pciutils
|
|
plymouth
|
|
policycoreutils
|
|
prefixdevname
|
|
procps-ng
|
|
rootfiles
|
|
rpm
|
|
selinux-policy-targeted
|
|
setup
|
|
shadow-utils
|
|
sssd-common
|
|
sssd-kcm
|
|
sudo
|
|
systemd
|
|
systemd-resolved
|
|
usbutils
|
|
util-linux
|
|
vim-minimal
|
|
wget
|
|
zram-generator-defaults
|
|
|
|
%end
|