Received: by mail.netbsd.org (Postfix, from userid 605) id 034A684D66; Mon, 23 Mar 2020 23:21:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8153884D37 for ; Mon, 23 Mar 2020 23:21: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 ZsuiPkzjps0i for ; Mon, 23 Mar 2020 23:21:18 +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 CC81784CD2 for ; Mon, 23 Mar 2020 23:21:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6638FB27; Mon, 23 Mar 2020 23:21:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585005677212940" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 23:21:17 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/filesystems/glusterfs/patches To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20200323232117.C6638FB27@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. --_----------=_1585005677212940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Mar 23 23:21:17 UTC 2020 Added Files: pkgsrc/filesystems/glusterfs/patches: patch-tools_gfind__missing__files_gfind__missing__files.sh Log Message: glusterfs: Add patch missing in previous commit To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \ pkgsrc/filesystems/glusterfs/patches/patch-tools_gfind__missing__files_gfind__missing__files.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585005677212940 Content-Disposition: inline Content-Length: 956 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/filesystems/glusterfs/patches/patch-tools_gfind__missing__files_gfind__missing__files.sh diff -u /dev/null pkgsrc/filesystems/glusterfs/patches/patch-tools_gfind__missing__files_gfind__missing__files.sh:1.1 --- /dev/null Mon Mar 23 23:21:17 2020 +++ pkgsrc/filesystems/glusterfs/patches/patch-tools_gfind__missing__files_gfind__missing__files.sh Mon Mar 23 23:21:17 2020 @@ -0,0 +1,17 @@ +$NetBSD: patch-tools_gfind__missing__files_gfind__missing__files.sh,v 1.1 2020/03/23 23:21:17 gdt Exp $ + +Remediate bashism. + +Not yet filed upstream. + +--- tools/gfind_missing_files/gfind_missing_files.sh.orig 2018-04-12 17:46:46.697237625 +0000 ++++ tools/gfind_missing_files/gfind_missing_files.sh +@@ -61,7 +61,7 @@ mount_slave() + + parse_cli() + { +- if [[ $# -ne 4 ]]; then ++ if [ "$#" -ne 4 ]; then + echo "Usage: gfind_missing_files " + exit 1 + else --_----------=_1585005677212940--