Tweaked package managers install command arguments.

This commit is contained in:
Fabio Manganiello 2023-08-19 13:46:08 +02:00
parent 69706eaabe
commit 9002f3034a
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ import yaml
from platypush.message.event import Event
supported_package_managers = {
'apk': ['apk', 'add', '--no-cache', '--no-progress'],
'apt': ['apt', 'install', '-y', '-q'],
'pacman': ['pacman', '-S', '--noconfirm', '--noprogressbar'],
'apk': ['apk', 'add', '--update', '--no-interactive', '--no-cache'],
'apt': ['apt', 'install', '-y'],
'pacman': ['pacman', '-S', '--noconfirm'],
}
_available_package_manager = None