X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=carnet-upgrade.git;a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=dd536da3a807dbae029fed567dc164959565d4ac;hp=6413868a1e1f4d9ca2890468c67c4cc7cd992f85;hb=5036c2b87817f76ab042593f7160cf36685417f7;hpb=0d61ec643fce980d271cacd1b6dd866e01ef393c diff --git a/debian/postinst b/debian/postinst index 6413868..dd536da 100644 --- a/debian/postinst +++ b/debian/postinst @@ -3,12 +3,49 @@ set -e [ "$1" = "configure" ] || exit 0 +[ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx + +# Load CARNET Tools +. /usr/share/carnet-tools/functions.sh # clear old cached values if dpkg --compare-versions "$2" lt 6.0; then export CN_POSTINST=1 fi +# perl se buni ako nema postavljen defaultni locale +# stavit cemo en_US.UTF-8 + +if [ ! grep -q "^en_US.UTF-8 UTF-8" /etc/locale.gen ]; then + # generirat cemo najpotrebnije locale (HR, EN, te HR.UTF i EN.UTF8) + cp_check_and_sed '# en_US.UTF-8 UTF-8' \ + 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g' \ + /etc/locale.gen || true + + cp_check_and_sed '# en_US ISO-8859-1' \ + 's/# en_US ISO-8859-1/en_US ISO-8859-1/g' \ + /etc/locale.gen || true + + cp_check_and_sed '# hr_HR ISO-8859-2' \ + 's/# hr_HR ISO-8859-2/hr_HR ISO-8859-2/g' \ + /etc/locale.gen || true + + cp_check_and_sed '# hr_HR.UTF-8 UTF-8' \ + 's/# hr_HR.UTF-8 UTF-8/hr_HR.UTF-8 UTF-8/g' \ + /etc/locale.gen || true + + locale-gen +fi + +# Ako ima već neki default ne diramo ga +if [ ! -f /etc/default/locale ]; then + cat > /etc/default/locale <