Repos with recipes to deploy some infrastructure services
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ---
- - name: RedHat-copy Crowdstrike agent install script
- copy:
- src: "{{ download_dir | default('.', true)}}/{{ Crowdstrike_version_rh }}"
- dest: "/opt/{{ Crowdstrike_version_rh }}"
-
- - name: RedHat-Install Crowdstrike agent
- yum:
- name: "/opt/{{ Crowdstrike_version_rh }}"
- state: present
-
- - name: RedHat-Configuring the CrowdStrike Falcon Service with the Customer ID ...
- shell: "./falconctl -s -f --apd=true --cid={{ Crowdstrike_cid }}"
- args:
- chdir: /opt/CrowdStrike/
- executable: /bin/sh
-
- - name: RedHat-Starting the CrowdStrike Falcon Service ...
- service:
- name: falcon-sensor
- enabled: True
- state: restarted
-
- - name: RedHat-Check Crowdstrike obtained ID else fail
- shell: "./falconctl -g --aid"
- args:
- chdir: /opt/CrowdStrike/
- executable: /bin/sh
- register: crowd_result
- failed_when: "'aid is not set' in crowd_result.stdout"
- retries: 6
- until: crowd_result is succeeded
- delay: 30
|