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 CB609DC0DBA for ; Fri, 30 Oct 2015 09:39:10 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 1A12DDC0DB0; Fri, 30 Oct 2015 09:39:09 +0000 (UTC) Received: from localhost (ip5f5ac910.dynamic.kabel-deutschland.de [95.90.201.16]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id a40624f2; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Fri, 30 Oct 2015 10:39:07 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/alpine-baselayout: don't create named user Date: Fri, 30 Oct 2015 10:39:02 +0100 Message-Id: <1446197942-10192-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.6.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 named user and its primary group are already created by the pre-install script provided by the main/bind package. To my knowledge this is the only package which requires the existence of this user it is therefore unnecessary to ship this user by default. --- main/alpine-baselayout/APKBUILD | 2 +- main/alpine-baselayout/group | 1 - main/alpine-baselayout/passwd | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/main/alpine-baselayout/APKBUILD b/main/alpine-baselayout/APKBUILD index 4018599..3608bab 100644 --- a/main/alpine-baselayout/APKBUILD +++ b/main/alpine-baselayout/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa pkgname=alpine-baselayout pkgver=2.3.2 -pkgrel=4 +pkgrel=5 pkgdesc="Alpine base dir structure and init scripts" url="http://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout" arch="all" diff --git a/main/alpine-baselayout/group b/main/alpine-baselayout/group index d2c5285..a5bdbe7 100644 --- a/main/alpine-baselayout/group +++ b/main/alpine-baselayout/group @@ -31,7 +31,6 @@ gdm:x:32:gdm xfs:x:33:xfs kvm:x:34:kvm games:x:35: -named:x:40:named shadow:x:42: mysql:x:60: postgres:x:70: diff --git a/main/alpine-baselayout/passwd b/main/alpine-baselayout/passwd index 2bbfefb..eb6abfc 100644 --- a/main/alpine-baselayout/passwd +++ b/main/alpine-baselayout/passwd @@ -20,7 +20,6 @@ squid:x:31:31:Squid:/var/cache/squid:/sbin/nologin gdm:x:32:32:GDM:/var/lib/gdm:/sbin/nologin xfs:x:33:33:X Font Server:/etc/X11/fs:/sbin/nologin games:x:35:35:games:/usr/games:/sbin/nologin -named:x:40:40:bind:/var/bind:/sbin/nologin mysql:x:60:60:mysql:/var/lib/mysql:/sbin/nologin postgres:x:70:70::/var/lib/postgresql:/bin/sh nut:x:84:84:nut:/var/state/nut:/sbin/nologin -- 2.6.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---