summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-08-17 02:40:45 +0000
committerhubertf <hubertf>2000-08-17 02:40:45 +0000
commit8fecddf404904ab9dda603fceba1378d7c2563b4 (patch)
treeb466c95c14cd4a347eb1feba204a36604704f961 /sysutils
parentd0b6dc27228f2cc7f289b1c1026670a6317fd5fe (diff)
downloadpkgsrc-8fecddf404904ab9dda603fceba1378d7c2563b4.tar.gz
grep -> grep -q
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/amanda-common/pkg/INSTALL4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/amanda-common/pkg/INSTALL b/sysutils/amanda-common/pkg/INSTALL
index 16c5f6d16b6..29c238aba54 100644
--- a/sysutils/amanda-common/pkg/INSTALL
+++ b/sysutils/amanda-common/pkg/INSTALL
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: INSTALL,v 1.1 2000/08/17 02:26:31 wiz Exp $
+# $NetBSD: INSTALL,v 1.2 2000/08/17 02:40:45 hubertf Exp $
PKGNAME=$1
STAGE=$2
@@ -15,7 +15,7 @@ PRE-INSTALL)
# Group... the default's shipped with NetBSD
# We need to check that ${AMGROUP} exists before adding the user.
#
- if grep "^${AMGROUP}:" /etc/group
+ if grep -q "^${AMGROUP}:" /etc/group
then
echo "Group '${AMGROUP}' already exists...proceeding."
else