mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-13 20:31:24 +00:00
file: skip in check_mode if state=touched
This commit is contained in:
@@ -310,6 +310,9 @@ def main():
|
||||
module.exit_json(dest=path, src=src, changed=changed)
|
||||
|
||||
elif state == 'touched':
|
||||
if module.check_mode:
|
||||
module.exit_json(path=path, skipped=True)
|
||||
|
||||
if prev_state not in ['file', 'directory', 'absent']:
|
||||
module.fail_json(msg='Cannot touch other than files and directories')
|
||||
if prev_state != 'absent':
|
||||
|
||||
Reference in New Issue
Block a user