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:
Albert Santoni 2014-06-05 15:10:25 -04:00
parent 61be4875fb
commit 314553487b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}