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