Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Apr 2026 03:59:00 +0000
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d41b4ba4d053 - main - net/3proxy: fix defect in its startup script
Message-ID:  <69d9c704.1c817.769b42ff@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by eugen:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d41b4ba4d053dd399e398d04051f239d371b16d7

commit d41b4ba4d053dd399e398d04051f239d371b16d7
Author:     Eugene Grosbein <eugen@FreeBSD.org>
AuthorDate: 2026-04-11 03:49:37 +0000
Commit:     Eugene Grosbein <eugen@FreeBSD.org>
CommitDate: 2026-04-11 03:49:37 +0000

    net/3proxy: fix defect in its startup script
    
    The startup script of 3proxy supplied with the port
    unnecessary overrides default start_cmd constructed
    with rc.subr procedures. This breaks, for example,
    the following setting in /etc/rc.conf:
    
    threeproxy_fib="1"
    
    This and similar <servicename>_SETTINGS are ignored due to such an override.
    Fix it.
    
    PR:                     293937
    Maintainer timeout:     3 weeks
---
 net/3proxy/Makefile        | 1 +
 net/3proxy/files/3proxy.in | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/net/3proxy/Makefile b/net/3proxy/Makefile
index 4c73caa46cb4..dca738ed738e 100644
--- a/net/3proxy/Makefile
+++ b/net/3proxy/Makefile
@@ -1,6 +1,7 @@
 PORTNAME=	3proxy
 DISTVERSION=	0.9.5
 CATEGORIES=	net
+PORTREVISION=	1
 
 MAINTAINER=	timp87@gmail.com
 COMMENT=	Proxy servers set (support HTTP(S), FTP, SOCKS, POP3, TCP & UDP)
diff --git a/net/3proxy/files/3proxy.in b/net/3proxy/files/3proxy.in
index b93347d32075..805bd51cfffb 100644
--- a/net/3proxy/files/3proxy.in
+++ b/net/3proxy/files/3proxy.in
@@ -23,6 +23,4 @@ command="%%PREFIX%%/bin/3proxy"
 
 load_rc_config $name
 
-start_cmd="echo \"Starting ${name}.\";	${command} ${threeproxy_flags}"
-
 run_rc_command "$1"


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69d9c704.1c817.769b42ff>