ITPLT-3785 item.path, not just the item

This commit is contained in:
Lee Goolsbee
2024-06-11 17:53:40 -05:00
parent 5caddaede1
commit 3fd8a01e90
3 changed files with 3 additions and 3 deletions

View File

@@ -93,7 +93,7 @@
- name: Limit permissions on files and directories in the installation directory, recursively, excluding working directories
ansible.builtin.file:
path: "{{ item }}"
path: "{{ item.path }}"
owner: "root"
group: "root"
mode: "u=rwX,g=rX,o=rX"

View File

@@ -101,7 +101,7 @@
- name: Limit permissions on files and directories in the installation and tomcat directories, recursively, excluding working directories
ansible.builtin.file:
path: "{{ item }}"
path: "{{ item.path }}"
owner: "root"
group: "root"
mode: "u=rwX,g=rX,o=rX"

View File

@@ -102,7 +102,7 @@
- name: Limit permissions on files and directories in the installation directory, recursively, excluding working directories
ansible.builtin.file:
path: "{{ item }}"
path: "{{ item.path }}"
owner: "root"
group: "root"
mode: "u=rwX,g=rX,o=rX"