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.
This commit is contained in:
Jeroen van Meeuwen (Fedora Unity)
2009-08-03 23:44:14 +02:00
parent 32ab440444
commit dfda24729b
25 changed files with 148 additions and 34 deletions

View File

@@ -0,0 +1,28 @@
# fedora-livecd-kde-de_CH.ks
#
# Maintainer(s):
# - Fabian Affolter <fab at fedoraproject.org>
%include ../fedora-livecd-kde.ks
lang de_DE.UTF-8
keyboard sg-latin1-nodeadkeys
timezone Europe/Zurich
%packages
@german-support
# exclude input methods
-m17n*
-scim*
%end
%post
# set up localized keyboard since it is not used in /etc/X11/xorg.conf anymore and
# KDE don't use /etc/sysconfig/keyboard.
# Replace "sg-latin1-nodeadkeys" with the keyboard layout you have used above
mkdir -p /home/liveuser/.kde/env
echo "system-config-keyboard --noui sg-latin1-nodeadkeys" > /home/liveuser/.kde/env/keyboard.sh
chmod +x /home/liveuser/.kde/env/keyboard.sh
chown -R liveuser:liveuser /home/liveuser/.kde/env/
%end