You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should no longer use "global" variables directly in a role but always assign them to local variables which follow the variable naming scheme, as in:
Note: When running ansible-lint in the collection root, we get var-naming[no-role-prefix] violations which are not detected when running ansible-lint in the role root.
The text was updated successfully, but these errors were encountered:
... for the three variables sap_hostname, sap_domain, sap_ip.
Those are used in many places in the role and the effort for changing
and testing the code is too high given that we plan to replace this
part of the role by the new role sap_maintain_etc_hosts.
Relates to sap-linuxlab#589.
Signed-off-by: Bernd Finger <bfinger@redhat.com>
We should no longer use "global" variables directly in a role but always assign them to local variables which follow the variable naming scheme, as in:
Note: When running
ansible-lint
in the collection root, we getvar-naming[no-role-prefix]
violations which are not detected when runningansible-lint
in the role root.The text was updated successfully, but these errors were encountered: