Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ox-installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue 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
QA
ox-installer
Commits
69d17892
Commit
69d17892
authored
5 years ago
by
benedikt.kroening
Browse files
Options
Downloads
Patches
Plain Diff
Fixed missing packages due to moved repo location
supervisord is in epel repositories on centos
parent
237adb04
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Issue16 7102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/setup.bash
+6
-2
6 additions, 2 deletions
lib/setup.bash
with
6 additions
and
2 deletions
lib/setup.bash
+
6
−
2
View file @
69d17892
...
...
@@ -805,11 +805,15 @@ function preInstallActions {
echo
"mysql mysql-server/root_password_again string
${
DATABASE_ROOT_PASS
}
"
| debconf-set-selections
elif
[[
true
==
"
${
ANY_RHEL
}
"
]]
||
[[
true
==
"
${
ANY_CENTOS
}
"
]]
;
then
ADDITIONAL_PACKAGES
=
"
${
ADDITIONAL_PACKAGES
}
nc"
echo
""
fi
if
[[
"
${
INSTALL_TYPE
}
"
==
*
"docker"
*
]]
;
then
echo
""
if
[[
true
==
"
${
ANY_CENTOS
}
"
]]
;
then
echo
"Adding epel repository for additional packages ..."
yum
install
epel-release
-y
fi
echo
"Installing supervisor for service management ..."
ADDITIONAL_PACKAGES
=
"supervisor
${
ADDITIONAL_PACKAGES
}
"
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment