diff options
Diffstat (limited to 'core/openrc/keymaps.initd')
-rw-r--r-- | core/openrc/keymaps.initd | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/core/openrc/keymaps.initd b/core/openrc/keymaps.initd deleted file mode 100644 index 8ee019c69d..0000000000 --- a/core/openrc/keymaps.initd +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 -} |