Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 18.223.108.134
Current Path : /var/lib/dpkg/info/ |
| Current File : /var/lib/dpkg/info/locales.prerm |
#!/bin/sh
set -e
case "$1" in
remove|purge)
# This test should be kept only for compatibility with old
# locales-all packages, new ones don't use locale-archive.
if ! [ -f /usr/lib/locales-all/supported.tar.lzma ] ; then
# If locales-all is not installed, clean the locales
rm -f /usr/lib/locale/locale-archive
fi
;;
*)
;;
esac
exit 0
|