diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-03-09 21:44:06 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-03-09 21:44:06 +0000 |
commit | cfa1de393aa4c0bf9b86ed55d0edeaec6e88fc98 (patch) | |
tree | 19cda022f713ef9383fad006cbc9ad83f3f0c121 /mail/postfix22/files/postfix.sh.in | |
parent | Update to 0.0.7. (diff) |
2009-02-15 ftp/downloader: sources unavailable - website dissappeared
2009-03-04 devel/rubygem-mojombo-grit: Obsolete, use devel/rubygem-grit instead
2009-03-08 mail/postfix1: Not supported anymore by vendor. Please choose a new one version.
2009-03-08 mail/postfix21: Not supported anymore by vendor. Please choose a new one version.
2009-03-08 mail/postfix22: Not supported anymore by vendor. Please choose a new one version.
2009-03-01 www/rubygem-actionwebservice: from rails 2.0 www/rubygem-rails use www/rubygem-activeresource instead
Notes
Notes:
svn path=/head/; revision=229806
Diffstat (limited to 'mail/postfix22/files/postfix.sh.in')
-rw-r--r-- | mail/postfix22/files/postfix.sh.in | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/mail/postfix22/files/postfix.sh.in b/mail/postfix22/files/postfix.sh.in deleted file mode 100644 index a65057423de3..000000000000 --- a/mail/postfix22/files/postfix.sh.in +++ /dev/null @@ -1,45 +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". -# - -. %%RC_SUBR%% - -name="postfix" -rcvar=`set_rcvar` - -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 start -} - -postfix_stop() { - %%PREFIX%%/sbin/postfix stop -} - -run_rc_command "$1" |