blob: 97cff13dbb299ded1e976f635dc1dfec70bb6acb (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Note: With kernel 2.6 the standard keymap is unusable
test -x /etc/init.d/keymap && /etc/init.d/keymap start >/dev/null 2>&1
# Do not exit w/ errorcode when the if above fails
/bin/true
|