download file via http way was changed

This commit is contained in:
Volkan Şahin 2016-05-09 14:12:33 +03:00
parent e124b3039f
commit b857e5d15d
1 changed files with 2 additions and 3 deletions

View File

@ -9,6 +9,7 @@ import shutil
import stat
import subprocess
import uuid
import urllib.request
from base.Scope import Scope
@ -67,9 +68,7 @@ class ExecutionManager(object):
elif plugin['protocol'].lower() == 'http':
self.logger.debug('[ExecutionManager] Distribution protocol is {}.'.format(str(plugin['protocol']).lower()))
#TODO
#wget.download(parameter_map['url'], temp_file)
pass
urllib.request.urlretrieve(parameter_map['url'], temp_file)
self.logger.debug('[ExecutionManager] Plugin package downloaded via {}.'.format(str(plugin['protocol']).lower()))
self.install_deb(temp_file)