Execution
Date 03 Feb 2026 12:12:11 +0000
Duration 00:00:13.61
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.4 / 1.7.4
Python 3.10.10
Summary
3 Hosts
2 Tasks
6 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