X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 484F2DC06E8 for ; Tue, 18 Aug 2015 11:56:46 +0000 (UTC) Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id DF280DC003A for ; Tue, 18 Aug 2015 11:56:45 +0000 (UTC) Received: by wibhh20 with SMTP id hh20so106472418wib.0 for ; Tue, 18 Aug 2015 04:56:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=przytarski.com; s=google; h=from:to:cc:subject:date:message-id; bh=3wE/epy+S6sn2If8zgGEB2ZQaXyXHThurRB/WJNmAE8=; b=HVMWCZN+VEjxIP8yaLy8+Bl++drWtlphq2+R/brFBifBLQGY+kcYlJwBCSIFxiWsuM fBgmovKtOf68gF7Q6o6KxsUeb+aKfiAnxUQ0HH5wo6pxP5eAEbc9hFPLFh22gg4JqAJ3 5hppMIe3GlxlslGRqTleZ1nf2wWJhLU/njW/M= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=3wE/epy+S6sn2If8zgGEB2ZQaXyXHThurRB/WJNmAE8=; b=A1TwGMEh5IFzZPuDQJz3953/gRfwhYf0nvKy1JN3D1M6Tm+QfdMotzB3Jk9/w7XHWM u93ZZRLMUKObGGLLt19P6Rzf3woYWJPkY2TURneQ5SbqkF/3PBmcGslJxFiX8eJGpmoH 6HUKJvM1TMmnacLL8HX9LwSTs0PljrIhyc2R6f4hdaMzvTOhhz8iTKmoxkWlW5dqTVs4 ZsYCJxXRgn5vglmdl/QBZ5FtZbKD/j9S0KHQceTFOybESzRe0ccNVXSd6G4V7M9fqD7P 9rdB0+D5ZZRY8VpIaLQHs59quYoCWnqLMIYVHy8F34Ez9/cCKkHoDgp05/oAlXGV6Ijf 4K7A== X-Gm-Message-State: ALoCoQnDHTJyta1Uda2Le9v3CSplYgk94VGRmtM1l7JGXnLY9FrPkBGPQXvLlqj2eoxEM4MNU2fg X-Received: by 10.194.178.1 with SMTP id cu1mr12722094wjc.59.1439898620843; Tue, 18 Aug 2015 04:50:20 -0700 (PDT) Received: from shafire-x86_64.alpinelinux.org (176-20-159-88.business.edutel.nl. [88.159.20.176]) by smtp.gmail.com with ESMTPSA id cd16sm21037757wib.19.2015.08.18.04.50.19 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 18 Aug 2015 04:50:20 -0700 (PDT) From: Dennis Przytarski To: alpine-aports@lists.alpinelinux.org Cc: Dennis Przytarski Subject: [alpine-aports] [PATCH] testing/knot: fixed pre-install script Date: Tue, 18 Aug 2015 11:49:51 +0000 Message-Id: <1439898591-32335-1-git-send-email-dennis@przytarski.com> X-Mailer: git-send-email 2.4.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: the option G is unrecognized for addgroup --- testing/knot/APKBUILD | 2 +- testing/knot/knot.pre-install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/knot/APKBUILD b/testing/knot/APKBUILD index 0ed5305..d4a9e7a 100644 --- a/testing/knot/APKBUILD +++ b/testing/knot/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Francesco Colista pkgname=knot pkgver=2.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="An high-performance authoritative-only DNS server" url="https://www.knot-dns.cz" arch="all" diff --git a/testing/knot/knot.pre-install b/testing/knot/knot.pre-install index 6341b31..57bc704 100644 --- a/testing/knot/knot.pre-install +++ b/testing/knot/knot.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -addgroup -G knot 2>/dev/null +addgroup -S knot 2>/dev/null adduser -s /sbin/nologin -G knot -S -D -H knot 2>/dev/null exit 0 -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---