From 845342fbb0210fcc22df4b2d634ef9938e2d03e4 Mon Sep 17 00:00:00 2001 From: mm Date: Thu, 27 Mar 2014 23:31:52 +0000 Subject: Allow specification of custom ProFTPD configuration file PR: ports/187678 Submitted by: Daniel Ylitalo --- ftp/proftpd/Makefile | 2 +- ftp/proftpd/files/proftpd.in | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) (limited to 'ftp') diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index 1945e5d5eff1..7a61eb97fd43 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/Makefile @@ -5,7 +5,7 @@ PORTNAME?= proftpd .if !defined(DISTVERSION) PORTVERSION?= ${PROFTPD_VERSION} .endif -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES?= ftp MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \ https://github.com/downloads/proftpd/proftpd.github.com/ \ diff --git a/ftp/proftpd/files/proftpd.in b/ftp/proftpd/files/proftpd.in index a4674f2bb49b..cf2a338c7e75 100644 --- a/ftp/proftpd/files/proftpd.in +++ b/ftp/proftpd/files/proftpd.in @@ -22,22 +22,20 @@ name=proftpd rcvar=proftpd_enable +proftpd_enable=${proftpd_enable:="NO"} +proftpd_config=${proftpd_config:="%%PREFIX%%/etc/proftpd.conf"} + command=%%PREFIX%%/sbin/proftpd -pidfile=$(grep PidFile /usr/local/etc/proftpd.conf | awk '{print($2)}') -required_files=%%PREFIX%%/etc/proftpd.conf +command_args="-c ${proftpd_config}" +pidfile=$(grep PidFile ${proftpd_config} | awk '{print($2)}') +required_files=${proftpd_config} +extra_commands="reload" stop_postcmd=stop_postcmd - stop_postcmd() { rm -f $pidfile } -# set defaults - -proftpd_enable=${proftpd_enable:-"NO"} - -extra_commands="reload" - load_rc_config $name run_rc_command "$1" -- cgit