Permissions fix for remote coverage downloads.

This commit is contained in:
Matt Clay 2017-07-02 13:33:21 -07:00
parent 554423cf04
commit cd3a795e65

View file

@ -315,7 +315,7 @@ def delegate_remote(args, exclude, require):
manage.ssh(cmd, ssh_options)
success = True
finally:
manage.ssh('rm -rf /tmp/results && cp -a ansible/test/results /tmp/results')
manage.ssh('rm -rf /tmp/results && cp -a ansible/test/results /tmp/results && chmod -R a+r /tmp/results')
manage.download('/tmp/results', 'test')
finally:
if args.remote_terminate == 'always' or (args.remote_terminate == 'success' and success):