From a60b9f07dee0ae4e9bbe34d4146661fcb33aa478 Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Sat, 23 Apr 2016 13:13:39 +0200 Subject: 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. --- testing/gogs/gogs.pre-install | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'testing/gogs/gogs.pre-install') diff --git a/testing/gogs/gogs.pre-install b/testing/gogs/gogs.pre-install index 1596d65693..b1d3258c91 100644 --- a/testing/gogs/gogs.pre-install +++ b/testing/gogs/gogs.pre-install @@ -1,4 +1,6 @@ #!/bin/sh -adduser -S -h /var/lib/gogs -s /bin/ash -G www-data -D -g gogs gogs 2>/dev/null || true -passwd -u gogs || true +adduser -S -h /var/lib/gogs -s /bin/ash -G www-data -D -g gogs gogs 2>/dev/null +passwd -u gogs 2>/dev/null + +exit 0 -- cgit v1.2.3