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