Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3D6121A9239 for ; Thu, 28 Jan 2021 19:49:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6C63384D71; Thu, 28 Jan 2021 19:49:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A54D484D62 for ; Thu, 28 Jan 2021 19:49:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xaFb6q6wZcZp for ; Thu, 28 Jan 2021 19:49:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0A40984D39 for ; Thu, 28 Jan 2021 19:49:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 03F6CFA90; Thu, 28 Jan 2021 19:49:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161186336981530" MIME-Version: 1.0 Date: Thu, 28 Jan 2021 19:49:29 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/net/mosquitto/files To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20210128194930.03F6CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161186336981530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Thu Jan 28 19:49:29 UTC 2021 Modified Files: pkgsrc/net/mosquitto/files: mosquitto.sh Log Message: mosquitto: Fix mistake introduced in rc script To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/mosquitto/files/mosquitto.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161186336981530 Content-Disposition: inline Content-Length: 740 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/mosquitto/files/mosquitto.sh diff -u pkgsrc/net/mosquitto/files/mosquitto.sh:1.2 pkgsrc/net/mosquitto/files/mosquitto.sh:1.3 --- pkgsrc/net/mosquitto/files/mosquitto.sh:1.2 Thu Jan 28 19:46:24 2021 +++ pkgsrc/net/mosquitto/files/mosquitto.sh Thu Jan 28 19:49:29 2021 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: mosquitto.sh,v 1.2 2021/01/28 19:46:24 triaxx Exp $ +# $NetBSD: mosquitto.sh,v 1.3 2021/01/28 19:49:29 triaxx Exp $ # # PROVIDE: mosquitto # REQUIRE: DAEMON @@ -10,7 +10,7 @@ name="mosquitto" rcvar=$name command="@PREFIX@/sbin/${name}" -pidfile="/var/run/${name}.pid" +pidfile="@VARBASE@/run/${name}.pid" config="@PKG_SYSCONFDIR@/${name}.conf" command_args="-d -c $config" --_----------=_161186336981530--