aboutsummaryrefslogtreecommitdiffstats
path: root/mail/opensmtpd-devel/files/pkg-deinstall.in
blob: 3c939c99eee16c0f0407d18c3cd3d983f84521b7 (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/^### smtpd: //g' -i '' /etc/mail/mailer.conf
fi

exit 0