From 4ecbf978c237a0566ffbe75928e2b5aafe49c2c6 Mon Sep 17 00:00:00 2001 From: Lee Goolsbee Date: Wed, 27 Mar 2024 10:41:10 -0500 Subject: [PATCH] remove debugging --- roles/bitbucket_mesh_config/tasks/mesh_setup.yml | 12 ------------ roles/bitbucket_mesh_config/tasks/meshvols_setup.yml | 12 ------------ roles/product_install/tasks/mesh_extra_tasks.yml | 12 ------------ 3 files changed, 36 deletions(-) diff --git a/roles/bitbucket_mesh_config/tasks/mesh_setup.yml b/roles/bitbucket_mesh_config/tasks/mesh_setup.yml index f309ba4..eb22a3c 100644 --- a/roles/bitbucket_mesh_config/tasks/mesh_setup.yml +++ b/roles/bitbucket_mesh_config/tasks/mesh_setup.yml @@ -12,18 +12,6 @@ - "{{ atl_product_home }}/caches" - "{{ atl_product_home }}/log" -- 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: Enforce the permissions on the pem files ansible.builtin.file: path: "{{ atl_product_home }}/config/{{ item }}" diff --git a/roles/bitbucket_mesh_config/tasks/meshvols_setup.yml b/roles/bitbucket_mesh_config/tasks/meshvols_setup.yml index 2b1ce3f..fcda07f 100644 --- a/roles/bitbucket_mesh_config/tasks/meshvols_setup.yml +++ b/roles/bitbucket_mesh_config/tasks/meshvols_setup.yml @@ -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" diff --git a/roles/product_install/tasks/mesh_extra_tasks.yml b/roles/product_install/tasks/mesh_extra_tasks.yml index 91318f2..933c495 100644 --- a/roles/product_install/tasks/mesh_extra_tasks.yml +++ b/roles/product_install/tasks/mesh_extra_tasks.yml @@ -7,15 +7,3 @@ group: "{{ atl_product_user }}" mode: "0754" changed_when: false # For Molecule idempotence check - -- 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 - '?:? (?)' }}