remove debugging

This commit is contained in:
Lee Goolsbee
2024-03-27 10:41:10 -05:00
parent 1838e7b874
commit 4ecbf978c2
3 changed files with 0 additions and 36 deletions

View File

@@ -54,18 +54,6 @@
vars:
fstype: "{{ (mesh_filesystem | length > 0) | ternary(mesh_filesystem[0], 'xfs') }}"
- stat:
path: "{{ atl_product_home }}"
register: xxx
- name: DEBUG print atl_product_home stat info
debug:
msg: >-
{{ xxx.stat.uid ~ ':' ~ xxx.stat.gid ~ ' (' ~ xxx.stat.mode ~ ')'
if xxx.stat.exists
else
'?:? (?)' }}
- name: Mount cache to atl_product_home/caches
ansible.posix.mount:
path: "{{ atl_product_home }}/caches"