diff options
author | Max Rees <maxcrees@me.com> | 2019-07-21 16:49:33 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-07-21 16:49:33 -0400 |
commit | 94731625b42d0dfc0fd5111482938584b40c7478 (patch) | |
tree | a3bd7f85b1674ffcdb4e74048696012bd3249417 /system/at/at.pre-install | |
parent | 1c094f0b6391ac321c21351ea3def051b81b1d79 (diff) | |
download | packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.gz packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.bz2 packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.xz packages-94731625b42d0dfc0fd5111482938584b40c7478.zip |
system/*: use useradd, groupadd instead of adduser, addgroup
Diffstat (limited to 'system/at/at.pre-install')
-rw-r--r-- | system/at/at.pre-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/at/at.pre-install b/system/at/at.pre-install index 78aa4bcf1..1d92862db 100644 --- a/system/at/at.pre-install +++ b/system/at/at.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -addgroup -S at 2>/dev/null -adduser -S -D -H -s /bin/false -G at -g at at 2>/dev/null +groupadd -r at 2>/dev/null +useradd -c at -s /sbin/nologin -g at -r at 2>/dev/null exit 0 |