Execution
Date 05 Jan 2026 11:05:33 +0000
Duration 00:00:43.01
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
28 Hosts
2 Tasks
55 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-update-raid_monit_pl.yaml

---
- name: Update raid monit
  hosts: all
  gather_facts: true
  vars:
    download_url: https://deploy.thecode.casa/raid_monit/raid_monit.pl
    dest_path: /usr/local/bin/raid_monit.pl
  tasks:
    - name: Download file from URL
      ansible.builtin.get_url:
        url: "{{ download_url }}"
        dest: "{{ dest_path }}"
        owner: root
        group: root
        mode: '0755'
        backup: true
        use_netrc: false