diff options
author | Harald Hoyer <harald@redhat.com> | 2012-07-27 14:15:48 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2012-07-27 14:15:48 +0200 |
commit | 3e51b2f6fc9cca431815fb5561727c5ce9b4e148 (patch) | |
tree | 077e57d9257893f44b81d0c84db1022e35fb7ee5 /modules.d/10i18n | |
parent | 852105dc44d4bdfda8d988146f08f4a60bce979c (diff) | |
download | dracut-3e51b2f6fc9cca431815fb5561727c5ce9b4e148.tar.gz dracut-3e51b2f6fc9cca431815fb5561727c5ce9b4e148.tar.bz2 dracut-3e51b2f6fc9cca431815fb5561727c5ce9b4e148.zip |
fixed i18n and plymouth for systemd
Diffstat (limited to 'modules.d/10i18n')
-rwxr-xr-x | modules.d/10i18n/parse-i18n.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/modules.d/10i18n/parse-i18n.sh b/modules.d/10i18n/parse-i18n.sh index 55301360..b3532967 100755 --- a/modules.d/10i18n/parse-i18n.sh +++ b/modules.d/10i18n/parse-i18n.sh @@ -35,10 +35,7 @@ if [ -f /etc/locale.conf ]; then export LC_ALL fi -# FIXME: fix systemd-vconsole-setup -#if [ -x /lib/systemd/systemd-vconsole-setup ]; then -# /lib/systemd/systemd-vconsole-setup -# rm -f /{etc,lib}/udev/rules.d/10-console.rules -# rm -f /lib/udev/console_init -# ln -s /lib/systemd/systemd-vconsole-setup /lib/udev/console_init -#fi +if [ -x /lib/systemd/systemd ]; then + rm -f /{etc,lib}/udev/rules.d/10-console.rules + rm -f /lib/udev/console_init +fi |