generic fix for Exceptions that heppen when trying to set permissions on extracted files fixes ansible/ansible#10934 which is really a corner case

This commit is contained in:
Brian Coca 2015-05-11 13:18:05 -04:00 committed by Matt Clay
parent 935550d20d
commit 0567404c03

View file

@ -303,7 +303,10 @@ def main():
# do we need to change perms? # do we need to change perms?
for filename in handler.files_in_archive: for filename in handler.files_in_archive:
file_args['path'] = os.path.join(dest, filename) file_args['path'] = os.path.join(dest, filename)
try:
res_args['changed'] = module.set_fs_attributes_if_different(file_args, res_args['changed']) res_args['changed'] = module.set_fs_attributes_if_different(file_args, res_args['changed'])
except (IOError, OSError), e:
module.fail_json(msg="Unexpected error when accessing exploded file: %s" % str(e))
if module.params['list_files']: if module.params['list_files']:
res_args['files'] = handler.files_in_archive res_args['files'] = handler.files_in_archive