freeipa / ansible-freeipa

Ansible roles and modules for FreeIPA
GNU General Public License v3.0
482 stars 230 forks source link

idoverride{user,group}: Fix delete_continue with state absent #1176

Closed t-woerner closed 8 months ago

t-woerner commented 8 months ago

All tasks for idoverrideuser and idoverridegroup with state absent failed with "'continue' is required" when delete_continue was not set.

This happended as delete_continue was internally None and continue: None was provided to the API.

The fix is simply to use '"continue": delete_continue or False' so that continue is set to False in this case.