HEX
Server: Apache
System: Linux eisbus 6.8.12-9-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-9 (2025-03-16T19:18Z) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/lib/dpkg/info/sendmail-bin.prerm
#!/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.11.4
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