ipa[server,replica,client]: Remove tasks folder prefix for include_tasks

This is not needed and will calm down ansible-lint, which is not able
to handle the extra tasks folder prefix.
This commit is contained in:
Thomas Woerner
2019-06-26 18:20:41 +02:00
parent 7e42102aa5
commit 5f580b5152
3 changed files with 6 additions and 6 deletions

View File

@@ -10,9 +10,9 @@
- "vars/default.yml"
- name: Install IPA replica
include_tasks: tasks/install.yml
include_tasks: install.yml
when: state|default('present') == 'present'
- name: Uninstall IPA replica
include_tasks: tasks/uninstall.yml
include_tasks: uninstall.yml
when: state|default('present') == 'absent'