Browse Source

i18n/console_init.sh: skip, if we use systemd and use systemd-vconsole-init

master
Harald Hoyer 13 years ago
parent
commit
852105dc44
  1. 6
      modules.d/10i18n/console_init.sh

6
modules.d/10i18n/console_init.sh

@ -2,7 +2,11 @@ @@ -2,7 +2,11 @@
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh

[ -x /lib/systemd/systemd-vconsole-setup ] && exit 0
[ -x /lib/systemd/systemd ] && exit 0

if [ -x /lib/systemd/systemd-vconsole-setup ]; then
/lib/systemd/systemd-vconsole-setup "$@"
fi

[ -e /etc/vconsole.conf ] && . /etc/vconsole.conf


Loading…
Cancel
Save