Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Imldeployment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
Imldeployment
Merge requests
!62
V2.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
V2.0
v2.0
into
master
Overview
0
Commits
139
Pipelines
0
Changes
3
Merged
Hahn Axel (hahn)
requested to merge
v2.0
into
master
1 year ago
Overview
0
Commits
139
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Viewing commit
b2d9400c
Show latest version
3 files
+
14
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
b2d9400c
fix rollout plugins
· b2d9400c
Hahn Axel (hahn)
authored
1 year ago
public_html/deployment/classes/rollout_base.class.php
+
6
−
5
Options
@@ -451,9 +451,9 @@ class rollout_base implements iRolloutplugin{
// ----------------------------------------------------------------------
/**
* get
a hash with the merged config
for project or mo specifi
c: of
a given
*
p
hase
* @param
string $sPhase
* get
configuration
for
the
project
..
or mo
re
specifi
for
a given
phase
*
@param string $sP
hase
* @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