mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 00:50:18 +01: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;
 | 
						|
    }
 | 
						|
} |