mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-07-17 08:21:38 +00:00
bugfix(upload web) When download file, static file will unreachable.
Didn't change dir fixed
This commit is contained in:
parent
c9ff235089
commit
eb4ec47f7a
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user