mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
555 B
26 lines
555 B
10 years ago
|
<?php
|
||
|
namespace Mage\Task\BuiltIn\Filesystem;
|
||
|
|
||
|
/**
|
||
|
* Task for giving Apache write permissions on given paths.
|
||
|
*
|
||
|
* @author Jérémy Huet <jeremy.huet@gmail.com>
|
||
|
*/
|
||
|
class PermissionsWritableByApacheTask extends PermissionsTask
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
parent::init();
|
||
|
|
||
|
$this->setGroup('www-data')
|
||
|
->setRights('775');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return "Gives write permissions to Apache user for given paths [built-in]";
|
||
|
}
|
||
|
}
|