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 5f255c4 commit 1ca3449Copy full SHA for 1ca3449
tasks/agent-linux.yml
@@ -89,6 +89,13 @@
89
enabled: yes
90
when: not datadog_skip_running_check and datadog_enabled and not ansible_check_mode and datadog_sysprobe_enabled
91
92
+- name: Ensure datadog-agent-sysprobe is stopped if disabled or not installed
93
+ service:
94
+ name: datadog-agent-sysprobe
95
+ state: stopped
96
+ enabled: no
97
+ when: not datadog_skip_running_check and (not datadog_enabled or not datadog_sysprobe_enabled)
98
+
99
- name: Ensure datadog-agent, datadog-agent-process and datadog-agent-trace are not running
100
service:
101
name: "{{ item }}"
0 commit comments