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. --- main/openntpd/openntpd.pre-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/openntpd') diff --git a/main/openntpd/openntpd.pre-install b/main/openntpd/openntpd.pre-install index 997e7bf826..c3d9986a65 100644 --- a/main/openntpd/openntpd.pre-install +++ b/main/openntpd/openntpd.pre-install @@ -2,6 +2,6 @@ # this user should be included in alpine-baselayout-1.2. # included here for backward compability. -adduser -S -H -h /var/empty -s /sbin/nologin -D -g ntp ntp 2>/dev/null +adduser -S -H -h /var/empty -s /sbin/nologin -D -g ntp ntp 2>/dev/null exit 0 -- cgit v1.2.3