diff options
| author | Doug Barton <dougb@FreeBSD.org> | 2012-08-05 23:19:36 +0000 |
|---|---|---|
| committer | Doug Barton <dougb@FreeBSD.org> | 2012-08-05 23:19:36 +0000 |
| commit | 9aac569eaa031e27191a3f4165b389a17f467ad2 (patch) | |
| tree | 1ed78841e1757014ccc09581c61c3683992d3f77 /mail/postfix28/files/postfix.sh.in | |
| parent | When installing in the base, USE_RCORDER does the right thing without (diff) | |
Move the rc.d scripts of the form *.sh.in to *.in
Where necessary add $FreeBSD$ to the file
No PORTREVISION bump necessary because this is a no-op
Diffstat (limited to 'mail/postfix28/files/postfix.sh.in')
| -rw-r--r-- | mail/postfix28/files/postfix.sh.in | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/mail/postfix28/files/postfix.sh.in b/mail/postfix28/files/postfix.sh.in deleted file mode 100644 index 216a3a5b21f0..000000000000 --- a/mail/postfix28/files/postfix.sh.in +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# PROVIDE: postfix mail -# REQUIRE: %%REQUIRE%% -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf to enable postfix: -# postfix_enable (bool): Set it to "YES" to enable postfix. -# Default is "NO". -# postfix_pidfile (path): Set full path to master.pid. -# Default is "/var/spool/postfix/pid/master.pid". -# postfix_procname (command): Set command that start master. Used to verify if -# postfix is running. -# Default is "%%PREFIX%%/libexec/postfix/master". -# postfix_flags (str): Flags passed to postfix-script on startup. -# Default is "". -# - -. /etc/rc.subr - -name="postfix" -rcvar=postfix_enable - -load_rc_config $name - -: ${postfix_enable:="NO"} -: ${postfix_pidfile:="/var/spool/postfix/pid/master.pid"} -: ${postfix_procname:="%%PREFIX%%/libexec/postfix/master"} - -start_cmd=${name}_start -stop_cmd=${name}_stop -extra_commands="reload" - -pidfile=${postfix_pidfile} -procname=${postfix_procname} - -postfix_start() { - %%PREFIX%%/sbin/postfix ${postfix_flags} start -} - -postfix_stop() { - %%PREFIX%%/sbin/postfix ${postfix_flags} stop -} - -run_rc_command "$1" |
