
| Current Path : /var/lib/dpkg/info/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/lib/dpkg/info/thunderbird.postrm |
#!/bin/sh
set -e
MOZ_PKG_NAME=thunderbird
abort_mv_conffile() {
local CONFFILE="$1"
if [ -e "$CONFFILE.dpkg-remove" ]; then
echo "Reinstalling $CONFFILE that was moved away"
mv "$CONFFILE.dpkg-remove" "$CONFFILE"
fi
}
if [ "$1" = "abort-install" -o "$1" = "abort-upgrade" ] ; then
abort_mv_conffile "/etc/${MOZ_PKG_NAME}/pref/thunderbird.js"
fi