mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 13:56:01 +01:00
bug fix: docker install
This commit is contained in:
@@ -34,7 +34,7 @@ class ServerStatusUtil(multi.Thread):
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def executioner(command, statusFile):
|
def executioner(command, statusFile):
|
||||||
try:
|
try:
|
||||||
res = subprocess.call(shlex.split(command), stdout=statusFile, stderr=statusFile)
|
res = subprocess.call(command, stdout=statusFile, stderr=statusFile, shell=True)
|
||||||
if res == 1:
|
if res == 1:
|
||||||
return 0
|
return 0
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user