Files
server/var/lib/dpkg/info/locales-all.postinst
2026-01-07 20:52:11 +01:00

15 lines
232 B
Bash
Executable File

#!/bin/sh
set -e
export LC_ALL=C
if [ "$1" = "configure" ]; then
# Remove existing locale-archive, otherwise they are prefered
# to the ones in this package
rm -f /usr/lib/locale/locale-archive 2>/dev/null || true
fi
exit 0