1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/mail/smtpd/files/smtpd.sh
David E. O'Brien f3f020da65 Obtuse smtpd/smtpfwdd, part of the Juniper firewall toolkit
Submitted by:	Joao Carlos Mendes Luis <jonny@coppe.ufrj.br>
1998-03-01 01:58:52 +00:00

12 lines
203 B
Bash

#! /bin/sh
if [ $# -eq 0 -o "$1" = "start" ]; then
if [ -x !!PREFIX!!/sbin/smtpfwdd ] ; then
!!PREFIX!!/sbin/smtpfwdd
echo " smtpfwdd"
fi
fi
if [ "$1" = "stop" ]; then
killall smtpfwdd
fi