1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 21:00:18 +02:00

Arranges.

This commit is contained in:
Andrs Montaez 2011-11-23 09:39:59 -02:00
parent e5f0fe9cfa
commit b3f80580a4
2 changed files with 17 additions and 8 deletions

View File

@ -1,8 +0,0 @@
<?php
class MyTask
{
public function run()
{
}
}

View File

@ -0,0 +1,17 @@
<?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;
}
}