Execution
Date 28 May 2024 10:57:46 +0100
Duration 00:00:00.17
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.4
ara 1.7.1 / 1.7.2.dev2
Python 3.10.10
Summary
0 Hosts
0 Tasks
0 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/playbook1.yaml

---
- name: Playbook to fix something
  hosts: all
  gather_facts: false
  tasks:
    - name: Fix things
      ansible.builtin.shell: |
        set -o pipefail
        cd /root/kvm_migration
        rm -rf check_systems
        wget https://deploy.thecode.casa/kvm_migration/check_systems
        chmod 755 check_systems
      args:
        executable: /bin/bash
      changed_when: false