Remove ansible example
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Mark Nellemann 2023-11-02 20:02:59 +01:00
parent 80066b0c2e
commit 5204142cb4
1 changed files with 0 additions and 40 deletions

View File

@ -1,40 +0,0 @@
---
#
# Example ansible playbook for installation of jload on AIX.
#
# ansible-playbook -i target-host-or-ip, -k -u root --extra-vars "sysmon_url=http://169.50.182.146:80/metrics" setup-client.yml
#
- name: "Install sysmon client and plugins on CentOS/RHEL"
hosts: all
gather_facts: no
tasks:
- name: Sysmon | Install java runtime
yum:
name: java-11-openjdk-headless
state: present
- name: Sysmon | Install sysmon-client RPM package
yum:
name: https://git.data.coop/api/packages/nellemann/generic/sysmon/v1.1.2/sysmon-client-1.1.2-1.noarch.rpm
disable_gpg_check: true
state: present
- name: Sysmon | Install sysmon-plugins RPM package
yum:
name: https://git.data.coop/api/packages/nellemann/generic/sysmon/v1.1.2/sysmon-plugins-1.1.2-1.noarch.rpm
disable_gpg_check: true
state: present
- name: Sysmon | Setup service to start from cron at boot
ansible.builtin.cron:
name: "sysmon-client"
special_time: reboot
job: "/opt/sysmon/client/bin/client -s {{ sysmon_url }} </dev/null >/dev/null 2>&1 &"
- name: Sysmon | Check if sysmon-client is running
shell: "ps -ef | grep 'sysmon-client' | grep -v 'grep'"
register: result
failed_when: result.rc not in [ 0, 1 ]
- name: Debug running_processes
debug:
var: result.stdout
- name: Sysmon | Start sysmon-client service if not running
shell: "nohup /opt/sysmon/client/bin/client -s {{ sysmon_url }} </dev/null >/dev/null 2>&1 &"
when: result.stdout == ""