fixed install multiples packages at once
This commit is contained in:
parent
6d3d9b3fbc
commit
a5b09f45d5
@ -244,9 +244,13 @@ class LinuxMachine():
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
if type(package) is list:
|
if type(package) is list:
|
||||||
|
packages = []
|
||||||
for p in package:
|
for p in package:
|
||||||
self.run_command(f"{utils.get_install_package_command(self.get_os_name())} {package}",
|
packages.append(p)
|
||||||
return_status_code=True, use_ssh=use_ssh)
|
|
||||||
|
self.run_command(
|
||||||
|
f"{utils.get_install_package_command(self.get_os_name())} {' '.join(packages)}",
|
||||||
|
return_status_code=True)
|
||||||
else:
|
else:
|
||||||
self.run_command(f"{utils.get_install_package_command(self.get_os_name())} {package}",
|
self.run_command(f"{utils.get_install_package_command(self.get_os_name())} {package}",
|
||||||
return_status_code=True, use_ssh=use_ssh)
|
return_status_code=True, use_ssh=use_ssh)
|
||||||
|
Loading…
Reference in New Issue
Block a user