summaryrefslogtreecommitdiff
path: root/mail/opensmtpd/files/pkg-deinstall.in
blob: cdc50001245ab8bc186d24308e01d17467dd2d27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

PKGNAME=$1
TARGET=$2

PREFIX=$(echo %%PREFIX%% |sed -e 's,/,\\/,g')

if [ "$TARGET" = POST-DEINSTALL -a -z "%%MAILERCONF%%" ]; then
	sed -e '/[[:space:]]'$PREFIX'\/sbin\/smtpctl/d' \
	    -e '/[[:space:]]'$PREFIX'\/libexec\/opensmtpd\/makemap/d' \
	    -e 's/^### smtpd: //g' -i '' /etc/mail/mailer.conf
fi

exit 0