DataDog / ansible-datadog

Ansible role for Datadog Agent
Apache License 2.0
298 stars 222 forks source link

windows install broken due to recent changes (fix proposed) #524

Closed TomFromTA closed 10 months ago

TomFromTA commented 10 months ago

A recent commit broke execution on Windows.

The issue is having both ansible.builtin.set_fact and ansible.builtin.debug in a single task, which of course is not allowed.

Here's a PR that tries to capture the intention - with valid ansible syntax - by removing the debug command and putting its message into the task name. https://github.com/DataDog/ansible-datadog/pull/523

TomFromTA commented 10 months ago

PR merged, all good!