80-locales 333 Bytes
Newer Older
1 2 3
#!/bin/sh
# FIXME: there should be less brutal i18n tuning

4 5 6 7 8
# don't cripple the image to be copied over
[ -n "$GLOBAL_LIVE_INSTALL"] || \
	[ -x /usr/sbin/live-install ] || \
	[ -x /usr/sbin/livecd-install ] && exit 0

9
cd /usr/share/locale
10
rm -r *@*
11 12 13 14 15 16 17
for i in */; do
	case "$i" in
	be*|en*|ru*|uk*) continue;;
	esac
	rm -r "$i"
done
: