Created
April 22, 2019 14:18
-
-
Save jaycdave88/95a5125bf4008d87b550a06f43a60858 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: windows | |
tasks: | |
- name: get dotnet tracer | |
win_get_url: | |
url: 'https://github.com/DataDog/dd-trace-dotnet/releases/download/v1.1.0/DatadogDotNetTracing-1.1.0-x64.msi' | |
dest: 'C:\datadog_dotnet_v1.1.0.msi' | |
- name: install datadog tracer msi file | |
win_msi: | |
path: 'C:\datadog_dotnet_v1.1.0.msi' | |
state: present | |
wait: yes | |
- name: delete datadog tracer msi file | |
win_msi: | |
path: 'C:\datadog_dotnet_v1.1.0.msi' | |
state: absent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment