Execution
Date 19 Aug 2024 12:32:52 +0100
Duration 00:00:04.86
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.4
ara 1.7.1 / 1.7.1
Python 3.10.10
Summary
13 Hosts
1 Tasks
13 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/projects/RM9686/uninstall_solus_hook.yaml

---
- name: Playbook to uninstall solus hook
  hosts: all
  gather_facts: false
  tasks:
    - name: Uninstall hook
      ansible.builtin.shell: |
        set -o pipefail
        rm -f /usr/local/solus/.env
        rm -f /usr/local/solus/hooks/floating-ip-save.sh
      args:
        executable: /bin/bash
      changed_when: false