diff options
author | Max Rees <maxcrees@me.com> | 2019-07-22 02:13:03 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-07-22 02:13:03 -0400 |
commit | 93b0513be9422e1666163d89031419412866e370 (patch) | |
tree | 8dfdcd50eb8b758584387bd0511968294118119a /user/apache-httpd/apache-httpd.pre-install | |
parent | e144e346b829eb39c1d2c82f5bdc4f8d991624b7 (diff) | |
download | packages-93b0513be9422e1666163d89031419412866e370.tar.gz packages-93b0513be9422e1666163d89031419412866e370.tar.bz2 packages-93b0513be9422e1666163d89031419412866e370.tar.xz packages-93b0513be9422e1666163d89031419412866e370.zip |
user/*: use useradd, groupadd instead of adduser, addgroup
Diffstat (limited to 'user/apache-httpd/apache-httpd.pre-install')
-rw-r--r-- | user/apache-httpd/apache-httpd.pre-install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user/apache-httpd/apache-httpd.pre-install b/user/apache-httpd/apache-httpd.pre-install index d4ede7476..49adfaab7 100644 --- a/user/apache-httpd/apache-httpd.pre-install +++ b/user/apache-httpd/apache-httpd.pre-install @@ -1,8 +1,8 @@ #!/bin/sh -addgroup -S -g 82 www-data 2>/dev/null -addgroup -S apache 2>/dev/null -adduser -S -D -H -h /var/www -s /sbin/nologin -G apache -g apache apache 2>/dev/null -addgroup apache www-data 2>/dev/null +groupadd -r -g 82 www-data 2>/dev/null +groupadd -r apache 2>/dev/null +useradd -c apache -s /sbin/nologin -g apache -G www-data \ + -m -d /var/www -k /etc/skel -r apache 2>/dev/null exit 0 |