Skip to content
Snippets Groups Projects

V2.0

Merged Hahn Axel (hahn) requested to merge v2.0 into master
3 files
+ 14
11
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -451,9 +451,9 @@ class rollout_base implements iRolloutplugin{
// ----------------------------------------------------------------------
/**
* get a hash with the merged config for project or mo specific: of a given
* phase
* @param string $sPhase
* get configuration for the project .. or more specifi for a given phase
* @param string $sPhase
* @param boolean $bMask Flag for public output; if true then mask your secrets
* @return array
*/
public function getConfig($sPhase=false, $bMask=false){
@@ -476,10 +476,11 @@ class rollout_base implements iRolloutplugin{
/**
* get an array with shell commands to execute
* @param string $sPhase
* @param string $sPhase
* @param boolean $bMask Flag for public output; if true then mask your secrets
* @return array
*/
public function getDeployCommands($sPhase){
public function getDeployCommands($sPhase, $bMask=false){
return [
'echo "ERROR: The method getDeployCommamds($sPhase) was not implemented in the rollout plugin ['.$this->getId().']"',
'exit 1'
Loading