mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
fda894de42
PR: 6977 Submitted by: maintainer
12 lines
206 B
Bash
12 lines
206 B
Bash
#! /bin/sh
|
|
|
|
if [ $# -eq 0 -o "$1" = "start" ]; then
|
|
if [ -x !!PREFIX!!/sbin/smtpfwdd ] ; then
|
|
!!PREFIX!!/sbin/smtpfwdd
|
|
echo -n " smtpfwdd"
|
|
fi
|
|
fi
|
|
if [ "$1" = "stop" ]; then
|
|
killall smtpfwdd
|
|
fi
|