diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-04-23 13:13:39 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-25 06:55:43 +0000 |
commit | a60b9f07dee0ae4e9bbe34d4146661fcb33aa478 (patch) | |
tree | f72d97073ee32bd15b5b0a913f108b144778af1c /main/opensmtpd/opensmtpd.pre-install | |
parent | a593d306c92f8bc15a1797c0a2ccfa784edbc4a0 (diff) | |
download | aports-a60b9f07dee0ae4e9bbe34d4146661fcb33aa478.tar.bz2 aports-a60b9f07dee0ae4e9bbe34d4146661fcb33aa478.tar.xz |
Improve consistency of scripts using adduser/addgroup.
Following rules have been applied:
- script starts with shebang !#/bin/sh followed by blank line,
- script ends with exit 0 prepended by blank line,
- only stderr of adduser, addgroup or passwd is redirected to /dev/null,
- getent passwd/group instances has been removed,
- manual checking of file and group existence has been removed,
- `|| true` instances has been removed.
Comments and line wrapping have been preserved.
Diffstat (limited to 'main/opensmtpd/opensmtpd.pre-install')
-rw-r--r-- | main/opensmtpd/opensmtpd.pre-install | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/main/opensmtpd/opensmtpd.pre-install b/main/opensmtpd/opensmtpd.pre-install index af0620e3db..8cbebc19a0 100644 --- a/main/opensmtpd/opensmtpd.pre-install +++ b/main/opensmtpd/opensmtpd.pre-install @@ -2,10 +2,8 @@ addgroup -S smtpd 2>/dev/null addgroup -S smtpq 2>/dev/null - adduser -S -H -D -s /sbin/nologin -h /dev/null -g 'SMTP Daemon' -G smtpd smtpd 2>/dev/null adduser -S -H -D -s /sbin/nologin -h /dev/null -g 'SMTPD Queue' -G smtpq smtpq 2>/dev/null - mkdir -p /var/spool/mail exit 0 |