Commit ea2631f1 authored by Anton Midyukov's avatar Anton Midyukov

live: do not create /etc/sysconfig/i18n, if it not exists

parent 036b5251
......@@ -3,7 +3,8 @@
# it should still be at least marginally reasonable
# NB: keyboard layout not included!
if [ -s /etc/sysconfig/i18n ]; then exit 0; fi
[ -f /etc/sysconfig/i18n ] || exit 0
[ ! -s /etc/sysconfig/i18n ] || exit 0
mkdir -p /etc/sysconfig
cat >> /etc/sysconfig/i18n << _EOF_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment