diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-08-25 23:53:41 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-26 11:02:20 +0200 |
commit | 5f708c1cd55c2e7dbbc4cc3e78a8322817d9819c (patch) | |
tree | df274930295a173b4071e4988b3344bc318d1af9 | |
parent | 129fe1bf6e40bc384dfe11af33db3877761a17c8 (diff) | |
download | buildroot-5f708c1cd55c2e7dbbc4cc3e78a8322817d9819c.tar.gz buildroot-5f708c1cd55c2e7dbbc4cc3e78a8322817d9819c.zip |
boa: boa.conf: run under the nogroup group
The default boa.conf we install specifies that boa should run under the
nobody group, but we don't have such a group in our default skeleton (and
boa doesn't add it), causing boa to fail to start:
[01/Jan/1970:00:00:10 +0000] No such group: nobody
Instead use the nogroup group, which is presumably what was meant.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/boa/boa.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boa/boa.conf b/package/boa/boa.conf index f51c237316..e94029665f 100644 --- a/package/boa/boa.conf +++ b/package/boa/boa.conf @@ -46,7 +46,7 @@ Port 80 # Group: The group name or GID the server should run as. User nobody -Group nobody +Group nogroup # ServerAdmin: The email address where server problems should be sent. # Note: this is not currently used, except as an environment variable |