first commit
This commit is contained in:
commit
031032d4e5
|
@ -0,0 +1,12 @@
|
|||
#!/bin/sh
|
||||
if (locale 2>&1 | grep "locale: Cannot set"); then
|
||||
if ! [ "$(id -u)" -eq 0 ]; then
|
||||
echo "Locales is broken, but you must be root to fix"
|
||||
exit 1
|
||||
fi
|
||||
echo "Fixing Locales"
|
||||
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
||||
locale-gen
|
||||
update-locale LANG=en_US.UTF-8 UTF-8
|
||||
dpkg-reconfigure --frontend=noninteractive locales
|
||||
fi
|
Loading…
Reference in New Issue