diff options
Diffstat (limited to 'user/tipidee/tipidee.pre-install')
-rw-r--r-- | user/tipidee/tipidee.pre-install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user/tipidee/tipidee.pre-install b/user/tipidee/tipidee.pre-install index 0ef043441..e92fd1d0a 100644 --- a/user/tipidee/tipidee.pre-install +++ b/user/tipidee/tipidee.pre-install @@ -1,7 +1,7 @@ #!/bin/sh -addgroup -S tipidee 2>/dev/null -adduser -S -D -h / -H -s /sbin/nologin -G tipidee -g tipideelog tipideelog 2>/dev/null -adduser -S -D -h / -H -s /sbin/nologin -G tipidee -g tipideed tipideed 2>/dev/null +groupadd -r -- tipidee 2>/dev/null +useradd -r -d / -M -N -s /sbin/nologin -g tipidee -c tipideelog -- tipideelog 2>/dev/null +useradd -r -d / -M -N -s /sbin/nologin -g tipidee -c tipideed -- tipideed 2>/dev/null exit 0 |