aboutsummaryrefslogtreecommitdiff
path: root/mail/opensmtpd-devel/files/pkg-deinstall.in
blob: 3ef0e1146da071595fcbe22658e5d00f2752dd46 (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 ]; then
	sed -e '/[[:space:]]'$PREFIX'\/sbin\/smtpctl/d' \
	    -e '/[[:space:]]'$PREFIX'\/libexec\/opensmtpd\/makemap/d' \
	    -e 's/^### opensmtpd: //g' -i '' /etc/mail/mailer.conf
fi

exit 0