/etc/init.d
NameSizeModeActions
apache-htcacheclean24890755editdlrm
apache281810755editdlrm
apparmor37400755editdlrm
apport29200755editdlrm
console-setup.sh12320755editdlrm
cron30620755editdlrm
cryptdisks9370755editdlrm
cryptdisks-early8960755editdlrm
dbus31520755editdlrm
docker29460755editdlrm
fail2ban70130755editdlrm
grub-common9850755editdlrm
hwclock.sh17480755editdlrm
irqbalance26380755editdlrm
iscsid15030755editdlrm
keyboard-setup.sh14790755editdlrm
kmod20440755editdlrm
lvm26950755editdlrm
lvm2-lvmpolld5860755editdlrm
mysql56070755editdlrm
netdiag18160755editdlrm
nginx45790755editdlrm
open-iscsi24330755editdlrm
open-vm-tools18460755editdlrm
php8.1-fpm42940755editdlrm
php8.3-fpm42940755editdlrm
php8.5-fpm42940755editdlrm
plymouth13860755editdlrm
plymouth-log7600755editdlrm
postfix30890755editdlrm
procps9590755editdlrm
rsync44170755editdlrm
screen-cleanup12220755editdlrm
ssh40600755editdlrm
udev68710755editdlrm
ufw20830755editdlrm
unattended-upgrades13910755editdlrm
uuidd13060755editdlrm
x11-common27570755editdlrm
Edit: /etc/init.d/keyboard-setup.sh (1479B)
#!/bin/sh ### BEGIN INIT INFO # Provides: keyboard-setup.sh # Required-Start: mountkernfs # Required-Stop: # X-Start-Before: checkroot # Default-Start: S # Default-Stop: # X-Interactive: true # Short-Description: Set the console keyboard layout # Description: Set the console keyboard as early as possible # so during the file systems checks the administrator # can interact. At this stage of the boot process # only the ASCII symbols are supported. ### END INIT INFO if [ -f /bin/setupcon ]; then case "$1" in stop|status) # console-setup isn't a daemon ;; start|force-reload|restart|reload) if [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions else log_action_begin_msg () { echo -n "$@... " } log_action_end_msg () { if [ "$1" -eq 0 ]; then echo done. else echo failed. fi } fi log_action_begin_msg "Setting up keyboard layout" if /lib/console-setup/keyboard-setup.sh; then log_action_end_msg 0 else log_action_end_msg $? fi ;; *) echo 'Usage: /etc/init.d/keyboard-setup {start|reload|restart|force-reload|stop|status}' exit 3 ;; esac fi