Using ansible.builtin where possible

This commit is contained in:
Charles Wright
2022-08-05 13:44:56 -05:00
parent 47caba38fb
commit 0ee44adde8
5 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
---
- name: Ensure Conduit config path exists
file:
ansible.builtin.file:
path: "{{ matrix_conduit_config_path }}"
state: directory
mode: 0750
@ -10,7 +10,7 @@
when: "matrix_conduit_enabled|bool"
- name: Ensure Conduit data path exists
file:
ansible.builtin.file:
path: "{{ matrix_conduit_data_path }}"
state: directory
mode: 0770