V6.0.0 - GigaSPOT #5

Merged
clore merged 8 commits from gigaspot into main 2025-01-19 17:54:53 +00:00
1 changed files with 4 additions and 9 deletions
Showing only changes of commit 777365adf8 - Show all commits

View File

@ -36,9 +36,7 @@ async def ensure_packages_installed(
return True
update_cmd = (
"apt-get update"
"-y"
"--no-install-recommends"
"apt-get update -y --no-install-recommends"
)
return_code, stdout, stderr = await utils.async_run_command(
update_cmd,
@ -55,12 +53,9 @@ async def ensure_packages_installed(
return False
install_cmd = (
"apt-get install"
"-y"
"--no-install-recommends"
"--assume-yes"
"-o Dpkg::Options::='--force-confdef'" # Default to existing config
"-o Dpkg::Options::='--force-confold'" # Keep existing config
"apt-get install -y --no-install-recommends --assume-yes "+
"-o Dpkg::Options::='--force-confdef' "+ # Default to existing config
"-o Dpkg::Options::='--force-confold' "+ # Keep existing config
f"{' '.join(packages_to_install)}"
)