ansible-role-bind
ansible-role-bind copied to clipboard
add dnssec-keygen
From issue #78 Add 'dnssec-keygen' for domains. Add with conditionals True or False for keygen
These changes cause ansible-lint warnings. Can you look into this?
You make use of the shell:
module, which can break idempotency of this role. Could you look into this? Often, this can be fixed by adding changed_when: false
to the task (provided it does not result in a state change), or creates:
so the task doesn't run twice.