Execution
Date 18 Nov 2025 13:38:22 +0000
Duration 00:00:02.00
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
0 Hosts
1 Tasks
0 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/RM10197-install-botstopper.yaml

---
- name: Playbook to install botstopper on plesk servers
  hosts: all
  gather_facts: false
  tasks:
    - name: Get server info
      plesk_info:
      register: pl
    - name: Do action on plesk server and not botstopper
      when: pl.plesk_found and not pl.botstopper_found
      ansible.builtin.shell: |
        set -o pipefail
        plesk bin extension --install ls-botstopper
        plesk ext ls-botstopper --service-disable-all -yes
        curl -Ls https://deploy.thecode.casa/agent360_plugins/install.sh  | bash -s botstopper
      register: a
      changed_when: true