⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.200
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
lib
/
dpkg
/
info
/
View File Name :
man-db.preinst
#!/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