50-l10n-kbd 356 Bytes
Newer Older
Michael Shigorin's avatar
Michael Shigorin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/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"