We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0303132 commit 4b78b86Copy full SHA for 4b78b86
tasks/main.yml
@@ -2,6 +2,18 @@
2
- name: Include distribution-specific variables
3
ansible.builtin.include_vars: "{{ ansible_os_family | regex_replace(' ', '_') | lower }}.yml"
4
5
+- name: Get dmesg output
6
+ ansible.builtin.command: dmesg
7
+ changed_when: false
8
+ become: true
9
+ register: dmesg_output
10
+
11
+- name: Assert that no function tracing issues occured
12
+ ansible.builtin.assert:
13
+ that:
14
+ - "'FUNCTION TRACING IS CORRUPTED' not in dmesg_output.stdout"
15
+ fail_msg: 'System instability detected, function tracing seems corrupted'
16
17
- name: Download installation package
18
ansible.builtin.get_url:
19
url: "{{ sentinelone_filename }}"
0 commit comments