Merge pull request #1305 from bcoca/unarchive_max_tb_fix
generic fix for Exceptions that happen when trying to set permissions
This commit is contained in:
commit
20abd5cf68
1 changed files with 4 additions and 1 deletions
|
@ -303,7 +303,10 @@ def main():
|
|||
# do we need to change perms?
|
||||
for filename in handler.files_in_archive:
|
||||
file_args['path'] = os.path.join(dest, filename)
|
||||
try:
|
||||
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']:
|
||||
res_args['files'] = handler.files_in_archive
|
||||
|
|
Loading…
Reference in a new issue