mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-25 21:00:18 +02:00
17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
class Task_Privileges
|
|
extends Mage_Task_TaskAbstract
|
|
{
|
|
public function getName()
|
|
{
|
|
return 'Fixing file privileges';
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$command = 'chown 33:33 . -R';
|
|
$result = $this->_runRemoteCommand($command);
|
|
|
|
return $result;
|
|
}
|
|
} |