refactor: migrate to fully qualified module names

This commit is contained in:
2024-07-27 21:32:56 +02:00
parent 8b600a9830
commit a708450260
3 changed files with 14 additions and 14 deletions

View File

@ -1,10 +1,10 @@
---
- name: Load config {{ nc_ldap_config_id }} (and create if not exists) when running mode is http
include_tasks: load_config_http.yml
ansible.builtin.include_tasks: load_config_http.yml
when: nc_ldap_api_method == 'http'
- name: Load config {{ nc_ldap_config_id }} (and create if not exists) when running mode is occ
include_tasks: load_config_occ.yml
ansible.builtin.include_tasks: load_config_occ.yml
when: nc_ldap_api_method == 'occ'