Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Very Demiurge Very Mindful
Kolla Ansible
Commits
427fc0b6
Commit
427fc0b6
authored
9 years ago
by
Jenkins
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix setup script misspelling and pkill flag"
parents
4aacc43e
5609af0f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/setup_docker.sh
+30
-7
30 additions, 7 deletions
tests/setup_docker.sh
with
30 additions
and
7 deletions
tests/setup_docker.sh
+
30
−
7
View file @
427fc0b6
...
...
@@ -5,21 +5,29 @@
# NOTE: This script was only tested on redhat/debian/suse platform families.
#
set
-x
e
u
set
-xu
DOCKER_MIN_VERSION
=
1.6.0
function
check_platform
()
{
function
check_prerequisites
()
{
if
[[
$EUID
-ne
0
]]
;
then
echo
"You must execute this script as root."
1>&2
exit
1
fi
if
[
"
$OSTYPE
"
!=
"linux-gnu"
]
;
then
echo
Platform not supported
exit
255
fi
if
[
"
$HOSTTYPE
"
!=
"x86_64"
]
;
then
echo
Machine
type
not supported
exit
255
fi
}
function
check_docker_version
()
{
local
docker_version
local
result
if
which
docker &>/dev/null
;
then
if
type
docker &>/dev/null
;
then
docker_version
=
$(
docker
--version
2>/dev/null |
awk
-F
"[ ,]"
'{print $3}'
)
result
=
$(
awk
'BEGIN{print '
$docker_version
' >= '
$DOCKER_MIN_VERSION
'}'
)
if
[
$result
=
1
]
;
then
...
...
@@ -30,7 +38,7 @@ function check_docker_version() {
}
function
start_docker
()
{
pkill
-9
docker
||
true
pkill
-x
-9
docker
if
check_docker_version
;
then
docker
-d
&>/dev/null &
else
...
...
@@ -40,8 +48,23 @@ function start_docker() {
fi
}
## Check platfrom
check_platfrom
function
create_group
()
{
getent group docker
if
[
$?
-eq
2
]
;
then
# 2: key could not be found in database
groupadd docker
chown
root:docker /var/run/docker.sock
usermod
-a
-G
docker
${
SUDO_USER
:-
$USER
}
else
echo
Unexpected failure:
$?
exit
fi
}
# Check for root privileges and correct platform
check_prerequisites
#
# Start Docker service
# Start Docker service
start_docker
# Ensure executing user is placed in the docker group
create_group
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