mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-27 04:12:29 +01:00
21 lines
271 B
Plaintext
21 lines
271 B
Plaintext
#!/sbin/runscript
|
|
|
|
description="Applies a keymap for the consoles."
|
|
|
|
depend()
|
|
{
|
|
need localmount
|
|
keyword noopenvz noprefix nouml novserver noxenu
|
|
}
|
|
|
|
start() {
|
|
[ -z "$KEYMAP" ] && return
|
|
ebegin "Setting keymap"
|
|
zcat "$KEYMAP" | loadkmap
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
return
|
|
}
|