Received: by mail.netbsd.org (Postfix, from userid 605) id A14EA84D7C; Mon, 31 Jul 2017 20:34:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 34CCD84D6D for ; Mon, 31 Jul 2017 20:34:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 5QaXleAtyo3v for ; Mon, 31 Jul 2017 20:34:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BB38884D60 for ; Mon, 31 Jul 2017 20:34:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1356FACD; Mon, 31 Jul 2017 20:34:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150153325731050" MIME-Version: 1.0 Date: Mon, 31 Jul 2017 20:34:17 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/security/cvm To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20170731203417.B1356FACD@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150153325731050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Jul 31 20:34:17 UTC 2017 Modified Files: pkgsrc/security/cvm: Makefile pkgsrc/security/cvm/files: cvm.sh Log Message: Increase default datalimit. Detach from the controlling terminal with pgrphack(8). Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/security/cvm/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/cvm/files/cvm.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150153325731050 Content-Disposition: inline Content-Length: 1649 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/cvm/Makefile diff -u pkgsrc/security/cvm/Makefile:1.21 pkgsrc/security/cvm/Makefile:1.22 --- pkgsrc/security/cvm/Makefile:1.21 Thu Jun 1 13:30:26 2017 +++ pkgsrc/security/cvm/Makefile Mon Jul 31 20:34:17 2017 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2017/06/01 13:30:26 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2017/07/31 20:34:17 schmonz Exp $ # DISTNAME= cvm-0.97 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= ${HOMEPAGE} Index: pkgsrc/security/cvm/files/cvm.sh diff -u pkgsrc/security/cvm/files/cvm.sh:1.2 pkgsrc/security/cvm/files/cvm.sh:1.3 --- pkgsrc/security/cvm/files/cvm.sh:1.2 Thu Apr 27 20:21:51 2017 +++ pkgsrc/security/cvm/files/cvm.sh Mon Jul 31 20:34:17 2017 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: cvm.sh,v 1.2 2017/04/27 20:21:51 schmonz Exp $ +# $NetBSD: cvm.sh,v 1.3 2017/07/31 20:34:17 schmonz Exp $ # # PROVIDE: cvm @@ -10,7 +10,7 @@ name="cvm" # User-settable rc.conf variables and their default values: : ${cvm_postenv:="CVM_LOOKUP_SECRET=''"} -: ${cvm_datalimit:="9000000"} +: ${cvm_datalimit:="180000000"} : ${cvm_module:="qmail"} : ${cvm_protocol:="local"} : ${cvm_log:="YES"} @@ -31,11 +31,11 @@ cvm_precmd() cvm_logcmd=${cvm_nologcmd} fi umask 0 - command="@SETENV@ - ${cvm_postenv} + command="@PREFIX@/bin/pgrphack @SETENV@ - ${cvm_postenv} @PREFIX@/bin/softlimit -m ${cvm_datalimit} @PREFIX@/bin/cvm-${cvm_module} cvm-${cvm_protocol}:@VARBASE@/run/cvm-${cvm_module} 2>&1 | -@PREFIX@/bin/setuidgid cvmlog ${cvm_logcmd}" +@PREFIX@/bin/pgrphack @PREFIX@/bin/setuidgid cvmlog ${cvm_logcmd}" command_args="&" rc_flags="" } --_----------=_150153325731050--