mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-06 11:39:40 +08:00
Looks like f44 dracut 108 again increased files under /boot . So again increase disc size.
30 lines
641 B
Plaintext
30 lines
641 B
Plaintext
# fedora-livecd-lxde.ks
|
|
#
|
|
# Description:
|
|
# - Fedora Live Spin with the light-weight LXDE Desktop Environment
|
|
#
|
|
# Maintainer(s):
|
|
# - Christoph Wickert <cwickert@fedoraproject.org>
|
|
|
|
%include fedora-live-base.ks
|
|
%include fedora-live-minimization.ks
|
|
%include fedora-lxde-common.ks
|
|
|
|
# increate the disk size for compose
|
|
part / --size 7168
|
|
|
|
%post
|
|
# LXDE and LXDM configuration
|
|
|
|
# create /etc/sysconfig/desktop (needed for installation)
|
|
cat > /etc/sysconfig/desktop <<EOF
|
|
PREFERRED=/usr/bin/startlxde
|
|
DISPLAYMANAGER=/usr/sbin/lxdm
|
|
EOF
|
|
|
|
# set livesys session type
|
|
sed -i 's/^livesys_session=.*/livesys_session="lxde"/' /etc/sysconfig/livesys
|
|
|
|
%end
|
|
|