mkimage-profiles/features.in/cleanup/live/image-scripts.d/80-locales

13 lines
175 B
Bash
Executable File

#!/bin/sh
# FIXME: there should be less brutal i18n tuning
cd /usr/share/locale
rm -r *@*
for i in */; do
case "$i" in
be*|en*|ru*|uk*) continue;;
esac
rm -r "$i"
done
: