#!/bin/sh
set -e

if [ "xbo_CN.UTF-8 UTF-8" != "x$(cat /etc/locale.gen | grep bo_CN.UTF-8)" ]; then
	sed -i '$a bo_CN.UTF-8 UTF-8' /etc/locale.gen;
	locale-gen;
fi
