mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-21 15:13:09 +00:00
eac1c05fec
Installed file size is already near limit, and on rawhide (F42), now compose began to fail at kernel posttrans scriptlet due to disk size shortage. So now let's increase size by 20%.
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 6144
|
|
|
|
%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
|
|
|