diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-06-06 02:05:12 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-06-07 07:20:09 +0000 |
commit | a835b69165330ce2160bb1349e436b7061a9e6dc (patch) | |
tree | b3a7c47a02b7e3c56264b1986f0e866486e94beb /testing/dspam | |
parent | 5708404c50a7e1bb8839c934e6ed29aa71dee873 (diff) | |
download | aports-a835b69165330ce2160bb1349e436b7061a9e6dc.tar.bz2 aports-a835b69165330ce2160bb1349e436b7061a9e6dc.tar.xz |
testing/[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:
- testing/dbmail
- testing/dspam
- testing/opensips
- testing/pdns
- testing/qpage
- testing/rrdbot
- testing/wt
Diffstat (limited to 'testing/dspam')
-rw-r--r-- | testing/dspam/dspam.pre-install | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/dspam/dspam.pre-install b/testing/dspam/dspam.pre-install index e78f1e6f34..8cffce83a3 100644 --- a/testing/dspam/dspam.pre-install +++ b/testing/dspam/dspam.pre-install @@ -1,6 +1,7 @@ #!/bin/sh -adduser -S -D -h /var/lib/dspam -s /bin/false -g dspam dspam 2>/dev/null +addgroup -S dspam 2>/dev/null +adduser -S -D -h /var/lib/dspam -s /bin/false -G dspam -g dspam dspam 2>/dev/null chown dspam:dspam /var/lib/dspam exit 0 |