| Server IP : 62.171.151.215 / Your IP : 216.73.217.53 Web Server : nginx/1.18.0 System : Linux vmi3128365 5.15.0-176-generic #186-Ubuntu SMP Fri Mar 13 11:01:42 UTC 2026 x86_64 User : alex ( 1000) PHP Version : 8.4.18 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
if [ "$1" = "remove" ]; then
# Prevent cronjob from running during removal...
if [ -f /etc/cron.d/sendmail ]; then
rm -f /etc/cron.d/sendmail
fi
fi
if [ "$1" = "upgrade" ]; then
# Prevent cronjob from running during upgrade...
if [ -f /etc/cron.d/sendmail ]; then
echo "#prerm" > /etc/cron.d/sendmail
# The cronjob is regenerated by the postinst
fi
fi
# Automatically added by dh_installinit/13.5.2ubuntu1
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = remove ] && [ -x "/etc/init.d/sendmail" ] ; then
invoke-rc.d --skip-systemd-native sendmail stop || exit 1
fi
# End automatically added section
if [ "$1" = "remove" ]; then
# Remove alternatives for MTA, MSP
# Note: removes paths needed by the initscript
update-alternatives --remove sendmail-mta /usr/libexec/sendmail/sendmail
update-alternatives --remove sendmail-msp /usr/libexec/sendmail/sendmail
fi