bugfix(upload web) When download file, static file will unreachable.

Didn't change dir

fixed
pull/206/head^2
ibuler 2016-04-20 14:29:11 +08:00
parent c9ff235089
commit eb4ec47f7a
1 changed files with 2 additions and 2 deletions

View File

@ -326,9 +326,9 @@ def download(request):
FileLog(user=request.user.username, host=' '.join([asset.hostname for asset in asset_select]),
filename=file_path, type='download', remote_ip=remote_ip, result=runner.results).save()
logger.debug(runner.results)
os.chdir('/tmp')
#os.chdir('/tmp')
tmp_dir_name = os.path.basename(upload_dir)
tar_file = '%s.tar.gz' % upload_dir
tar_file = '/tmp/%s.tar.gz' % upload_dir
bash('tar czf %s %s' % (tar_file, tmp_dir_name))
f = open(tar_file)
data = f.read()