Execution
Date 12 Dec 2025 07:00:58 +0000
Duration 00:00:01.28
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
1 Hosts
2 Tasks
2 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/RM10228-selector.yaml

---
- name: Get cl selectors
  hosts: all
  gather_facts: false
  tasks:
    - name: On cl servers run check
      ansible.builtin.stat:
        path: /opt/cpvendor/config/cl-manager-ui-settings.json
      register: file_check
    - name: Print message if file exists
      ansible.builtin.debug:
        msg: "File exists!"
      when: file_check.stat.exists
      changed_when: file_check.stat.exists