11 lines
202 B
Bash
11 lines
202 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = remove ] || [ "$1" = deconfigure ]; then
|
|
update-alternatives --remove postfwd /usr/sbin/postfwd1
|
|
update-alternatives --remove postfwd /usr/sbin/postfwd2
|
|
fi
|
|
|
|
#DEBHELPER#
|