mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-06 00:14:22 +00:00
25 lines
484 B
Plaintext
25 lines
484 B
Plaintext
|
# fedora-livedvd-developer-pt_PT.ks
|
||
|
#
|
||
|
# Maintainer(s):
|
||
|
# - Pedro Silva <pedrofsilva a netcabo.pt>
|
||
|
|
||
|
%include fedora-livedvd-developer.ks
|
||
|
|
||
|
lang pt_PT.UTF-8
|
||
|
keyboard pt-latin1
|
||
|
timezone Europe/Lisbon
|
||
|
|
||
|
%packages
|
||
|
@portuguese-support
|
||
|
%end
|
||
|
|
||
|
%post
|
||
|
# system-config-keyboard doesn't really work (missing xorg.conf etc)
|
||
|
cat >>/etc/X11/xorg.conf << EOF
|
||
|
Section "InputDevice"
|
||
|
Identifier "Keyboard0"
|
||
|
Driver "kbd"
|
||
|
Option "XkbLayout" "pt-latin1"
|
||
|
EndSection
|
||
|
EOF
|
||
|
%end
|