diff --git a/src/base/execution/execution_manager.py b/src/base/execution/execution_manager.py index e30ee6f..d341815 100644 --- a/src/base/execution/execution_manager.py +++ b/src/base/execution/execution_manager.py @@ -90,7 +90,7 @@ class ExecutionManager(object): return try: - Util.install_with_gdebi(downloaded_file) + Util.install_with_dpkg(downloaded_file) self.logger.debug('Plugin installed.') except Exception as e: self.logger.error('Could not install plugin. Error Message: {0}'.format(str(e))) diff --git a/src/base/util/util.py b/src/base/util/util.py index 897d3d6..04cf066 100644 --- a/src/base/util/util.py +++ b/src/base/util/util.py @@ -223,7 +223,7 @@ class Util: raise @staticmethod - def install_with_gdebi(full_path): + def install_with_dpkg(full_path): command_dpkg = 'dpkg -i {0}' command_dep = 'apt -f install -y' commands = [command_dpkg.format(full_path),command_dep]