personal_ansible_desktop_configs
personal_ansible_desktop_configs copied to clipboard
Use FQCN instead of short module names in Ansible
It's possible that modules use the same names for tasks. Because of that, Ansible suggests to use "FQCN". Eg. instead of copy
, use ansible.builtin.copy
.
PR #5 fixes this.