This commit is contained in:
qiaofeng1227 2023-07-27 10:09:15 +08:00
parent 028d1103db
commit ac6ba075b4
3 changed files with 3 additions and 2 deletions

View file

@ -30,6 +30,7 @@ jobs:
with: with:
image: websoft9dev/appmanage image: websoft9dev/appmanage
tags: ${{ env.VERSION }} tags: ${{ env.VERSION }}
addLatest: True
registry: docker.io registry: docker.io
dockerfile: appmanage/Dockerfile dockerfile: appmanage/Dockerfile
directory: appmanage directory: appmanage

View file

@ -15,7 +15,7 @@ def execute_command_output_all(cmd_str):
myLogger.info_logger("Start to execute cmd: " + cmd_str) myLogger.info_logger("Start to execute cmd: " + cmd_str)
process = subprocess.run(f'nsenter -m -u -i -n -p -t 1 sh -c "{cmd_str}"', capture_output=True, check=False, text=True, shell=True) process = subprocess.run(f'nsenter -m -u -i -n -p -t 1 sh -c "{cmd_str}"', capture_output=True, bufsize=65536, check=False, text=True, shell=True)
if process.returncode == 0 and 'Fail' not in process.stdout and 'fail' not in process.stdout and 'Error' not in process.stdout and 'error' not in process.stdout: if process.returncode == 0 and 'Fail' not in process.stdout and 'fail' not in process.stdout and 'Error' not in process.stdout and 'error' not in process.stdout: