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 475E1DC0848 for ; Mon, 13 Jul 2015 15:40:49 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 12076DC0841 for ; Mon, 13 Jul 2015 15:40:48 +0000 (UTC) Received: from [81.4.121.188] (port=60104 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1ZEfqW-002mZc-Nv; Mon, 13 Jul 2015 16:40:44 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH] testing/lshell: add lshell user:group (revised) Date: Mon, 13 Jul 2015 15:40:33 +0000 Message-Id: <1436802033-452-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.4.5 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: with $pkgrel bumped --- testing/lshell/APKBUILD | 2 +- testing/lshell/lshell.pre-install | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 testing/lshell/lshell.pre-install diff --git a/testing/lshell/APKBUILD b/testing/lshell/APKBUILD index 6504225..b0b59bc 100644 --- a/testing/lshell/APKBUILD +++ b/testing/lshell/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Fabian Affolter pkgname=lshell pkgver=0.9.16 -pkgrel=0 +pkgrel=1 pkgdesc="Python-based limited Shell" url="http://ghantoos.org/limited-shell-lshell" arch="noarch" diff --git a/testing/lshell/lshell.pre-install b/testing/lshell/lshell.pre-install new file mode 100644 index 0000000..b8b883e --- /dev/null +++ b/testing/lshell/lshell.pre-install @@ -0,0 +1,5 @@ +#!/bin/sh +addgroup -S lshell 2>/dev/null +adduser -S -H -h /var/empty -G lshell -D -s /sbin/nologin lshell 2>/dev/null +exit 0 + -- 2.4.5 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---