mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-06 00:14:22 +00:00
1a41824efe
Remove code to copy licenses/release files & livecd-iso-to-disk, if
needed. livecd-creator now handles this directly.
(8d33dd973e
)
107 lines
2.8 KiB
Plaintext
107 lines
2.8 KiB
Plaintext
# fedora-live-base.ks
|
|
#
|
|
# Defines the basics for all kickstarts in the fedora-live branch
|
|
# Does not include package selection (other then mandatory)
|
|
# Does not include localization packages or configuration
|
|
#
|
|
# Does includes "default" language configuration (kickstarts including
|
|
# this template can override these settings)
|
|
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
timezone US/Eastern
|
|
selinux --enforcing
|
|
firewall --enabled --service=mdns
|
|
xconfig --startxonboot
|
|
zerombr
|
|
clearpart --all
|
|
part / --size 5120 --fstype ext4
|
|
services --enabled=NetworkManager,ModemManager --disabled=sshd
|
|
network --bootproto=dhcp --device=link --activate
|
|
rootpw --lock --iscrypted locked
|
|
shutdown
|
|
|
|
%include fedora-repo.ks
|
|
|
|
%packages
|
|
# Explicitly specified here:
|
|
# <notting> walters: because otherwise dependency loops cause yum issues.
|
|
kernel
|
|
kernel-modules
|
|
kernel-modules-extra
|
|
|
|
# The point of a live image is to install
|
|
anaconda
|
|
anaconda-install-env-deps
|
|
anaconda-live
|
|
@anaconda-tools
|
|
# Anaconda has a weak dep on this and we don't want it on livecds, see
|
|
# https://fedoraproject.org/wiki/Changes/RemoveDeviceMapperMultipathFromWorkstationLiveCD
|
|
-fcoe-utils
|
|
-device-mapper-multipath
|
|
|
|
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
|
aajohan-comfortaa-fonts
|
|
|
|
# Without this, initramfs generation during live image creation fails: #1242586
|
|
dracut-live
|
|
|
|
# anaconda needs the locales available to run for different locales
|
|
glibc-all-langpacks
|
|
|
|
# provide the livesys scripts
|
|
livesys-scripts
|
|
%end
|
|
|
|
%post
|
|
# 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
|
|
|