diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-12 20:38:27 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-12 20:38:27 +0000 |
commit | fd4e3518e9fd05b6ef906e7d4d9aaceff46d8623 (patch) | |
tree | 01fee69f81078263e13bb56e8cbf610c01518334 /mail/postfix-current | |
parent | edc9f24ed24591c9300294c03aa33219d7d8d60e (diff) |
Notes
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/Makefile | 1 | ||||
-rw-r--r-- | mail/postfix-current/files/postfix.sh.in | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index e419611d6474..cd353640e1d1 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix DISTVERSION= 2.3-20060103 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ diff --git a/mail/postfix-current/files/postfix.sh.in b/mail/postfix-current/files/postfix.sh.in index 8424abbe123b..6ef4b39c77e1 100644 --- a/mail/postfix-current/files/postfix.sh.in +++ b/mail/postfix-current/files/postfix.sh.in @@ -14,6 +14,8 @@ # DO NOT CHANGE THESE DEFAULT VALUES HERE # postfix_enable="${postfix_enable-NO}" +postfix_pidfile="${postfix_pidfile:-/var/spool/postfix/pid/master.pid}" +postfix_procname="${postfix_procname:-%%PREFIX%%/libexec/postfix/master}" . %%RC_SUBR%% @@ -23,6 +25,10 @@ rcvar=`set_rcvar` start_cmd=${name}_start stop_cmd=${name}_stop +extra_commands="reload" +pidfile=${postfix_pidfile} +procname=${postfix_procname} + postfix_start() { %%PREFIX%%/sbin/postfix start } |