CC-5797: Install should give www-data permissions on stor
* chmod command was bugged due to extra 0 (read the docs)
This commit is contained in:
parent
61be4875fb
commit
314553487b
|
@ -178,7 +178,7 @@ class AirtimeInstall
|
|||
|
||||
echo "* Giving Apache permission to access $rp".PHP_EOL;
|
||||
$success = chgrp($rp, $CC_CONFIG["webServerUser"]);
|
||||
$success = chmod($rp, 02775);
|
||||
$success = chmod($rp, 0775);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue