summaryrefslogtreecommitdiffstats
path: root/custom
diff options
context:
space:
mode:
authorJeroen van Meeuwen (Fedora Unity) <kanarip@fedoraunity.org>2009-08-03 23:44:14 +0200
committerJeroen van Meeuwen (Fedora Unity) <kanarip@fedoraunity.org>2009-08-03 23:44:14 +0200
commitdfda24729b8416b8fa7ed3c07298a988b13f3734 (patch)
tree20e0977e885cfcfddad3e755dc155b6029db72f0 /custom
parent32ab4404441e6d3b62b2607b3f645870da51cb7d (diff)
downloadspin-kickstarts-dfda24729b8416b8fa7ed3c07298a988b13f3734.tar.gz
spin-kickstarts-dfda24729b8416b8fa7ed3c07298a988b13f3734.tar.xz
spin-kickstarts-dfda24729b8416b8fa7ed3c07298a988b13f3734.zip
Move localized kickstarts to l10n/
Move custom kickstarts to custom/ Remove fedora-livecd-desktop-en_US.ks now that it is no longer necessary to localize the desktop.ks kickstart in en_US.
Diffstat (limited to 'custom')
-rw-r--r--custom/README7
l---------custom/fedora-live-base.ks1
l---------custom/fedora-livecd-desktop.ks1
l---------custom/fedora-livecd-kde.ks1
-rw-r--r--custom/fedora-livecd-lxde.ks114
5 files changed, 124 insertions, 0 deletions
diff --git a/custom/README b/custom/README
new file mode 100644
index 0000000..d13cf88
--- /dev/null
+++ b/custom/README
@@ -0,0 +1,7 @@
+== NOTICE ==
+
+This directory contains unofficial kickstarts. These have been technically
+approved by the Fedora Spins SIG, but have no trademark approval.
+
+Included in this directory is also a few symbolic links to official Fedora
+kickstarts, used by the other kickstarts in this directory.
diff --git a/custom/fedora-live-base.ks b/custom/fedora-live-base.ks
new file mode 120000
index 0000000..f283971
--- /dev/null
+++ b/custom/fedora-live-base.ks
@@ -0,0 +1 @@
+../fedora-live-base.ks \ No newline at end of file
diff --git a/custom/fedora-livecd-desktop.ks b/custom/fedora-livecd-desktop.ks
new file mode 120000
index 0000000..5466f3f
--- /dev/null
+++ b/custom/fedora-livecd-desktop.ks
@@ -0,0 +1 @@
+../fedora-livecd-desktop.ks \ No newline at end of file
diff --git a/custom/fedora-livecd-kde.ks b/custom/fedora-livecd-kde.ks
new file mode 120000
index 0000000..77a5924
--- /dev/null
+++ b/custom/fedora-livecd-kde.ks
@@ -0,0 +1 @@
+../fedora-livecd-kde.ks \ No newline at end of file
diff --git a/custom/fedora-livecd-lxde.ks b/custom/fedora-livecd-lxde.ks
new file mode 100644
index 0000000..21f01ef
--- /dev/null
+++ b/custom/fedora-livecd-lxde.ks
@@ -0,0 +1,114 @@
+# 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
+
+%packages
+# rebranding
+-fedora-release
+-fedora-logos
+-fedora-release-notes
+generic-logos
+generic-release
+generic-release-notes
+
+# LXDE desktop
+@lxde-desktop
+lxlauncher
+obconf
+parcellite
+slim
+
+# internet
+midori
+sylpheed
+lostirc
+transmission
+gftp
+
+# office
+abiword
+gnumeric
+osmo
+#glista
+
+# graphics
+epdfview
+mtpaint
+
+# audio & video
+pavucontrol
+lxmusic
+asunder
+totem
+totem-mozplugin
+
+# I'm looking for something smaller than
+gnomebaker
+
+# development
+#geany
+
+# More Desktop stuff
+xdg-user-dirs
+@java
+alsa-plugins-pulseaudio
+NetworkManager-gnome
+galculator
+xpad
+cups-pdf
+
+# use yumex instead of gnome-packagekit
+#-gnome-packagekit
+#yumex
+
+# Command line
+powertop
+wget
+yum-utils
+
+# dictionaries are big
+-aspell-*
+-hunspell-*
+-man-pages-*
+-words
+
+# save some space
+-nss_db
+-sendmail
+ssmtp
+-acpid
+
+%end
+
+%post
+# LXDE and SLiM configuration
+
+# create /etc/sysconfig/desktop (needed for installation)
+
+cat >> /etc/sysconfig/desktop <<EOF
+PREFERRED=/usr/bin/startlxde
+DISPLAYMANAGER=/usr/bin/slim-dynwm
+EOF
+
+cat >> /etc/rc.d/init.d/livesys << EOF
+chown -R liveuser:liveuser /home/liveuser
+restorecon -R /home/liveuser
+
+# set up timed auto-login for after 60 seconds
+cat >> /etc/slim.conf << FOE
+auto_login yes
+default_user liveuser
+FOE
+
+EOF
+
+%post
+
+%end
+