Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
I
install.api
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Script
install.api
Commits
15b3130e
Commit
15b3130e
authored
Mar 23, 2020
by
金凯强
🎨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
校验出错修正
parent
293740e0
Pipeline
#21409
passed with stage
in 48 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
install_service.py
app/install/install_service.py
+1
-1
upgrade_service.py
app/upgrade/upgrade_service.py
+1
-1
No files found.
app/install/install_service.py
View file @
15b3130e
...
...
@@ -194,6 +194,6 @@ class InstallService(HSBaseUCService):
'''
out
,
err
=
ssh
.
exec_command
(
'docker -v'
)
if
'Docker version'
in
out
or
err
:
if
'Docker version'
in
out
or
'Docker version'
in
err
:
logger
.
info
(
'docker安装失败'
)
raise
HSException
(
'远端服务器已经安装docker,不需要重新安装'
)
app/upgrade/upgrade_service.py
View file @
15b3130e
...
...
@@ -503,7 +503,7 @@ docker-compose -f /data/upgrade_tools_data/backup/{upgrade_no}/docker-compose.ym
'''
out
,
err
=
ssh
.
exec_command
(
'docker -v'
)
if
'Docker version'
not
in
out
or
err
:
if
'Docker version'
not
in
out
or
'Docker version'
not
in
err
:
logger
.
info
(
'验证远端服务器是否安装docker日志:{}'
.
format
(
err
))
logger
.
info
(
'远程升级失败'
)
raise
HSException
(
'远端服务器未安装docker,请先安装后再升级'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment