aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Jaury <pierre@jaury.eu>2016-04-29 19:30:49 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-16 16:08:21 +0000
commitfb87e4fd62220cf107377aeb9e4e65a9a237ec7f (patch)
tree56ded967d93fa693b7bcf0ac0dd68b16cf9d91dc
parent99fd51c839afa83e50964e04ef5887bd2cbafb76 (diff)
downloadalpine_aports-fb87e4fd62220cf107377aeb9e4e65a9a237ec7f.tar.bz2
alpine_aports-fb87e4fd62220cf107377aeb9e4e65a9a237ec7f.tar.xz
alpine_aports-fb87e4fd62220cf107377aeb9e4e65a9a237ec7f.zip
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-install2
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 @@
1#!/bin/sh 1#!/bin/sh
2 2
3addgroup -S dovecot 2>/dev/null
4addgroup -S dovenull 2>/dev/null
3adduser -S -u 90 -D -H -h /dev/null -s /sbin/nologin -g dovecot dovecot 2>/dev/null 5adduser -S -u 90 -D -H -h /dev/null -s /sbin/nologin -g dovecot dovecot 2>/dev/null
4adduser -S -u 91 -D -H -h /dev/null -s /sbin/nologin -g dovenull dovenull 2>/dev/null 6adduser -S -u 91 -D -H -h /dev/null -s /sbin/nologin -g dovenull dovenull 2>/dev/null
5 7