-more description in 2.1.0 upgrade script

This commit is contained in:
Martin Konecny 2012-05-16 15:38:44 -04:00
parent b677d2985b
commit 07afbc77ce
1 changed files with 2 additions and 0 deletions

View File

@ -10,7 +10,9 @@ class AirtimeMiscUpgrade{
public static function adjustAirtimeStorPermissions($p_ini){
/* Make the read permission of Monit cfg files more strict */
$webUser = $p_ini["general"]["web_server_user"];
echo " * Updating /srv/airtime owner to root:$webUser".PHP_EOL;
exec("chown -R root:$webUser /srv/airtime");
echo " * Updating /srv/airtime permissions to 02755".PHP_EOL;
exec("chmod -R 2775 /srv/airtime");
}
}