Execution
Date 17 Apr 2026 11:55:19 +0100
Duration 00:00:09.82
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.13
ara 1.7.5 / 1.7.5
Python 3.10.10
Summary
1 Hosts
2 Tasks
2 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