2008-05-01 16:30:50 +02:00
|
|
|
# fedora-livecd-xfce.ks
|
2008-04-25 12:10:13 +02:00
|
|
|
#
|
|
|
|
# Description:
|
|
|
|
# - Fedora Live Spin with the light-weight XFCE Desktop Environment
|
|
|
|
#
|
|
|
|
# Maintainer(s):
|
2008-09-25 16:45:23 +05:30
|
|
|
# - Rahul Sundaram <sundaram@fedoraproject.org>
|
2009-10-10 01:49:20 +02:00
|
|
|
# - Christoph Wickert <cwickert@fedoraproject.org>
|
2008-09-25 16:45:23 +05:30
|
|
|
# - Kevin Fenzi <kevin@tummy.com>
|
2011-01-07 10:40:57 -06:00
|
|
|
# - Adam Miller <maxamillion@fedoraproject.org>
|
2008-04-23 10:21:10 +02:00
|
|
|
|
2008-04-24 01:29:55 +02:00
|
|
|
%include fedora-live-base.ks
|
2010-03-23 09:14:04 -04:00
|
|
|
%include fedora-live-minimization.ks
|
2017-01-18 11:28:09 +00:00
|
|
|
%include fedora-xfce-common.ks
|
2008-04-23 10:21:10 +02:00
|
|
|
|
2020-06-29 17:49:51 -07:00
|
|
|
# need a bigger /
|
|
|
|
part / --size 6144
|
|
|
|
|
2008-04-23 10:21:10 +02:00
|
|
|
%post
|
|
|
|
# xfce configuration
|
|
|
|
|
|
|
|
# create /etc/sysconfig/desktop (needed for installation)
|
|
|
|
|
|
|
|
cat > /etc/sysconfig/desktop <<EOF
|
|
|
|
PREFERRED=/usr/bin/startxfce4
|
2012-07-21 15:02:37 -06:00
|
|
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
2008-04-23 10:21:10 +02:00
|
|
|
EOF
|
|
|
|
|
2022-11-29 01:30:25 -05:00
|
|
|
# set livesys session type
|
|
|
|
sed -i 's/^livesys_session=.*/livesys_session="xfce"/' /etc/sysconfig/livesys
|
2008-04-24 01:29:55 +02:00
|
|
|
|
2008-04-23 10:21:10 +02:00
|
|
|
%end
|
|
|
|
|