You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
356 B
18 lines
356 B
3 years ago
|
#!/bin/sh
|
||
|
# partial port of livecd-setlocale (kbd bits)
|
||
|
|
||
|
CONFIG=/etc/sysconfig/keyboard
|
||
|
|
||
|
# Requires: console-scripts
|
||
|
if [ -s "$CONFIG" ]; then
|
||
|
echo "** l10n-kbd: expected $CONFIG to be an empty file" >&2
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
if [ -z "$GLOBAL_KEYTABLE" ]; then
|
||
|
echo "** l10n-kbd: empty GLOBAL_KEYTABLE" >&2
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "KEYTABLE=$GLOBAL_KEYTABLE" > "$CONFIG"
|