mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	[Nostromo] Apply PHP Mess Detector recommendations
This commit is contained in:
		
							parent
							
								
									2c567bebff
								
							
						
					
					
						commit
						c2b83428f0
					
				@ -144,15 +144,16 @@ class DeployCommand extends AbstractCommand
 | 
				
			|||||||
        if (count($hosts) == 0) {
 | 
					        if (count($hosts) == 0) {
 | 
				
			||||||
            $output->writeln(sprintf('    No hosts defined, skipping %s tasks', $this->getStageName()));
 | 
					            $output->writeln(sprintf('    No hosts defined, skipping %s tasks', $this->getStageName()));
 | 
				
			||||||
            $output->writeln('');
 | 
					            $output->writeln('');
 | 
				
			||||||
        } else {
 | 
					            return true;
 | 
				
			||||||
            foreach ($hosts as $host) {
 | 
					        }
 | 
				
			||||||
                $this->runtime->setWorkingHost($host);
 | 
					
 | 
				
			||||||
                if (!$this->runTasks($output, $tasks)) {
 | 
					        foreach ($hosts as $host) {
 | 
				
			||||||
                    $this->runtime->setWorkingHost(null);
 | 
					            $this->runtime->setWorkingHost($host);
 | 
				
			||||||
                    throw $this->getException();
 | 
					            if (!$this->runTasks($output, $tasks)) {
 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
                $this->runtime->setWorkingHost(null);
 | 
					                $this->runtime->setWorkingHost(null);
 | 
				
			||||||
 | 
					                throw $this->getException();
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					            $this->runtime->setWorkingHost(null);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -414,10 +414,9 @@ class Runtime
 | 
				
			|||||||
        $host = $this->getWorkingHost();
 | 
					        $host = $this->getWorkingHost();
 | 
				
			||||||
        $sshConfig = $this->getSSHConfig();
 | 
					        $sshConfig = $this->getSSHConfig();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        $cmdDelegate = $cmd;
 | 
				
			||||||
        if ($sudo === true) {
 | 
					        if ($sudo === true) {
 | 
				
			||||||
            $cmdDelegate = sprintf('sudo %s', $cmd);
 | 
					            $cmdDelegate = sprintf('sudo %s', $cmd);
 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
            $cmdDelegate = $cmd;
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if ($jail) {
 | 
					        if ($jail) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user