Execution
Date 25 Nov 2025 12:36:42 +0000
Duration 00:05:03.27
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
393 Hosts
1 Tasks
393 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-install-lsrepo.yaml

---
- name: Install ls rpm repo
  hosts: all
  gather_facts: false
  tasks:
    - name: Install lsrepo
      ansible.builtin.shell: |
        set -o pipefail
        dnf config-manager --add-repo https://rpm.thecode.casa/layershift.repo
        dnf check-update
        dnf -y install ls_tools
      args:
        executable: /bin/bash
      changed_when: false