mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed broken force=yes on files for directories
This commit is contained in:
parent
a017a69bb3
commit
6342046da6
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ def main():
|
|||
module.exit_json(path=path, changed=True)
|
||||
|
||||
if prev_state != 'absent' and prev_state != state:
|
||||
if not (force and prev_state == 'file' and state == 'link') and state != 'touch':
|
||||
if not (force and (prev_state == 'file' or prev_state == 'directory') and state == 'link') and state != 'touch':
|
||||
module.fail_json(path=path, msg='refusing to convert between %s and %s for %s' % (prev_state, state, src))
|
||||
|
||||
if prev_state == 'absent' and state == 'absent':
|
||||
|
|
Loading…
Reference in a new issue