diff options
author | Pierre Jaury <pierre@jaury.eu> | 2016-04-29 19:30:49 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-16 16:08:21 +0000 |
commit | fb87e4fd62220cf107377aeb9e4e65a9a237ec7f (patch) | |
tree | 56ded967d93fa693b7bcf0ac0dd68b16cf9d91dc | |
parent | 99fd51c839afa83e50964e04ef5887bd2cbafb76 (diff) | |
download | aports-fb87e4fd62220cf107377aeb9e4e65a9a237ec7f.tar.bz2 aports-fb87e4fd62220cf107377aeb9e4e65a9a237ec7f.tar.xz |
main/dovecot: create dovecot system users
Since a593d306c92f8bc15a1797c0a2ccfa784edbc4a0, the main group
for system users is specified explicitely but the system groups
were not created in the first place.
-rw-r--r-- | main/dovecot/dovecot.pre-install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/dovecot/dovecot.pre-install b/main/dovecot/dovecot.pre-install index e19b1138a2..e3ee636d68 100644 --- a/main/dovecot/dovecot.pre-install +++ b/main/dovecot/dovecot.pre-install @@ -1,5 +1,7 @@ #!/bin/sh +addgroup -S dovecot 2>/dev/null +addgroup -S dovenull 2>/dev/null adduser -S -u 90 -D -H -h /dev/null -s /sbin/nologin -g dovecot dovecot 2>/dev/null adduser -S -u 91 -D -H -h /dev/null -s /sbin/nologin -g dovenull dovenull 2>/dev/null |