Permissions fix for remote coverage downloads.
This commit is contained in:
parent
554423cf04
commit
cd3a795e65
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ def delegate_remote(args, exclude, require):
|
||||||
manage.ssh(cmd, ssh_options)
|
manage.ssh(cmd, ssh_options)
|
||||||
success = True
|
success = True
|
||||||
finally:
|
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')
|
manage.download('/tmp/results', 'test')
|
||||||
finally:
|
finally:
|
||||||
if args.remote_terminate == 'always' or (args.remote_terminate == 'success' and success):
|
if args.remote_terminate == 'always' or (args.remote_terminate == 'success' and success):
|
||||||
|
|
Loading…
Reference in a new issue