aboutsummaryrefslogtreecommitdiffstats
path: root/main/openntpd
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemoc@zoho.com>2016-06-06 02:05:10 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-06-07 07:20:09 +0000
commita7d67c695ca2750e7088ca33cc365281c353af18 (patch)
tree0187cbc1372ed89ec27520602565f55b156a8fa6 /main/openntpd
parent976e09d0664c68c9cadbc95c1711d1a2a437c403 (diff)
downloadaports-a7d67c695ca2750e7088ca33cc365281c353af18.tar.bz2
aports-a7d67c695ca2750e7088ca33cc365281c353af18.tar.xz
main/[various]: Add group and use it as primary in .pre-* scripts.
Fixes the problem I unintentionally brought in commit ccc056dbf9d3: system user creation doesn't add same named group and uses nogroup as primary group unless explicitly specified via -G. Brings status quo regarding primary groups of users created in packages: - main/apache2 - main/aports-build - main/atheme-iris - main/clamav - main/clamsmtp - main/coova-chilli - main/dhcp - main/djbdns - main/ez-ipupdate - main/fetchmail - main/freeswitch - main/gitolite - main/gnats - main/gross - main/icecast - main/memcached - main/ngircd - main/openntpd - main/snort - main/squid - main/transmission - main/znc
Diffstat (limited to 'main/openntpd')
-rw-r--r--main/openntpd/openntpd.pre-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/openntpd/openntpd.pre-install b/main/openntpd/openntpd.pre-install
index 6b8204b64f..975bf543f0 100644
--- a/main/openntpd/openntpd.pre-install
+++ b/main/openntpd/openntpd.pre-install
@@ -2,6 +2,7 @@
# this user should be included in alpine-baselayout-1.2.
# included here for backward compability.
-adduser -S -D -H -h /var/empty -s /sbin/nologin -g ntp ntp 2>/dev/null
+addgroup -S ntp 2>/dev/null
+adduser -S -D -H -h /var/empty -s /sbin/nologin -G ntp -g ntp ntp 2>/dev/null
exit 0