diff --git a/lib/ansible/modules/files/file.py b/lib/ansible/modules/files/file.py index 4b757715af9..2b557c94470 100644 --- a/lib/ansible/modules/files/file.py +++ b/lib/ansible/modules/files/file.py @@ -440,7 +440,7 @@ def main(): if prev_state == 'absent': try: open(b_path, 'wb').close() - except OSError as e: + except (OSError, IOError) as e: module.fail_json(path=path, msg='Error, could not touch target: %s' % to_native(e, nonstring='simplerepr')) elif prev_state in ('file', 'directory', 'hard'): try: