mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-06 00:14:22 +00:00
34 lines
763 B
Plaintext
34 lines
763 B
Plaintext
# fedora-livecd-xfce.ks
|
|
#
|
|
# Description:
|
|
# - Fedora Live Spin with the light-weight XFCE Desktop Environment
|
|
#
|
|
# Maintainer(s):
|
|
# - Rahul Sundaram <sundaram@fedoraproject.org>
|
|
# - Christoph Wickert <cwickert@fedoraproject.org>
|
|
# - Kevin Fenzi <kevin@tummy.com>
|
|
# - Adam Miller <maxamillion@fedoraproject.org>
|
|
|
|
%include fedora-live-base.ks
|
|
%include fedora-live-minimization.ks
|
|
%include fedora-xfce-common.ks
|
|
|
|
# need a bigger /
|
|
part / --size 6144
|
|
|
|
%post
|
|
# xfce configuration
|
|
|
|
# create /etc/sysconfig/desktop (needed for installation)
|
|
|
|
cat > /etc/sysconfig/desktop <<EOF
|
|
PREFERRED=/usr/bin/startxfce4
|
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
|
EOF
|
|
|
|
# set livesys session type
|
|
sed -i 's/^livesys_session=.*/livesys_session="xfce"/' /etc/sysconfig/livesys
|
|
|
|
%end
|
|
|