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/abuild/abuild.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/abuild/abuild.pre-install')
-rw-r--r-- | system/abuild/abuild.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/abuild/abuild.pre-install b/system/abuild/abuild.pre-install index fd3d39a36..169982d83 100644 --- a/system/abuild/abuild.pre-install +++ b/system/abuild/abuild.pre-install @@ -1,5 +1,5 @@ #!/bin/sh -addgroup -S abuild 2>/dev/null +groupadd -r abuild 2>/dev/null exit 0 |