X-Original-To: alpine-aports@lists.alpinelinux.org Received: from sender153-mail.zoho.com (sender153-mail.zoho.com [74.201.84.153]) by lists.alpinelinux.org (Postfix) with ESMTP id EF7735C4498 for ; Mon, 6 Jun 2016 00:06:05 +0000 (GMT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=from:to:subject:date:message-id:in-reply-to:references; b=GbH3RPp6hAgq3yOqsoELexAm9vQPC+S2N3MHrZEwsoMrPLJ1NHBrHnwLeGvjupg6dqk7R8/+Ff+A u0V4Pe2tpcKEScjgojUiYH1DUq4miWShUUFdbbXRLjRsf1P8g2f7 Received: from localhost (89-74-38-183.dynamic.chello.pl [89.74.38.183]) by mx.zohomail.com with SMTPS id 1465171564832562.942410931364; Sun, 5 Jun 2016 17:06:04 -0700 (PDT) From: Przemyslaw Pawelczyk To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 06/15] main/ympd: Reorder arguments in .pre-install as in da4e96aacef5. Date: Mon, 6 Jun 2016 02:05:06 +0200 Message-Id: <1465171515-6581-7-git-send-email-przemoc@zoho.com> X-Mailer: git-send-email 2.6.6 In-Reply-To: <1465171515-6581-1-git-send-email-przemoc@zoho.com> References: <1465171515-6581-1-git-send-email-przemoc@zoho.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Somehow I overlooked this adduser call in mentioned commit. --- main/ympd/ympd.pre-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ympd/ympd.pre-install b/main/ympd/ympd.pre-install index a9a6edb..27eb617 100644 --- a/main/ympd/ympd.pre-install +++ b/main/ympd/ympd.pre-install @@ -1,5 +1,5 @@ #!/bin/sh -adduser -S -H -D -s /sbin/nologin -G audio -g ympd ympd 2>/dev/null +adduser -S -D -H -s /sbin/nologin -G audio -g ympd ympd 2>/dev/null exit 0 -- 2.6.6 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---