mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-14 21:03:08 +00:00
1ecd01e3b6
I added a tiny bit of space, but turns out theres not quit enough for the initramfs to be generated and the compose still fails. So, lets add 100MB. That should be enough for the scriptlets to complete. I'd like to cherry pick this into f40 as well. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
27 lines
461 B
Plaintext
27 lines
461 B
Plaintext
# fedora-live-lxqt.ks
|
||
#
|
||
# Description:
|
||
# – Fedora Live Spin with the LXQt desktop environment
|
||
#
|
||
# Maintainer(s):
|
||
# – Christian Dersch <lupinix@fedoraproject.org>
|
||
#
|
||
|
||
%include fedora-live-base.ks
|
||
%include fedora-live-minimization.ks
|
||
%include fedora-lxqt-common.ks
|
||
|
||
# need a bigger /
|
||
part / --size 5300
|
||
|
||
%packages
|
||
dracut-config-generic
|
||
%end
|
||
|
||
%post
|
||
# set livesys session type
|
||
sed -i 's/^livesys_session=.*/livesys_session="lxqt"/' /etc/sysconfig/livesys
|
||
|
||
%end
|
||
|