| Server IP : 159.253.20.91 / Your IP : 216.73.216.111 Web Server : nginx/1.20.2 System : Linux se38c9e53.fastvps-server.com 5.10.0-13-amd64 #1 SMP Debian 5.10.106-1 (2022-03-17) x86_64 User : pr11_ru_usr ( 1041) PHP Version : 8.1.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
# Clean up a cron job that the old man package apparently left around.
if [ -e /etc/cron.daily/man ]; then
echo " Removing /etc/cron.daily/man cron job from obsolete man package."
mv /etc/cron.daily/man /etc/cron.daily/man.moved-by-preinst
fi
# Clean up a cron job left around by man-db from some time ago.
if [ -e /etc/cron.weekly/catman ]; then
echo " Removing obsolete /etc/cron.weekly/catman cron job."
mv /etc/cron.weekly/catman /etc/cron.weekly/catman.moved-by-preinst
fi
# Migrate old statoverrides to new paths.
if dpkg --compare-versions "$2" lt 2.5.5-4; then
for x in $maybesetuid; do
overrides="$(dpkg-statoverride --list /usr/lib/man-db/$x || true)"
[ "$overrides" ] || continue
echo "$overrides" | while read owner group mode file; do
dpkg-statoverride --remove "$file" || true
dpkg-statoverride --add "$owner" "$group" "$mode" /usr/bin/$x || true
done
done
fi
exit 0