Skip to content

Commit

Permalink
Fix bug with using incorrect temp path for windows (#375)
Browse files Browse the repository at this point in the history
* Fix bug with using incorrect temp path for windows

* Adding changelog fragment
  • Loading branch information
carlosmmatos authored Aug 3, 2023
1 parent 811808b commit 2e5f263
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/fix-windows-dest-url.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- falcon_install - Fix Windows destination URL (https://github.com/CrowdStrike/ansible_collection_falcon/pull/375)
4 changes: 2 additions & 2 deletions roles/falcon_install/tasks/win_url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
- name: CrowdStrike Falcon | Downloading Installation Package from URL (Windows)
ansible.windows.win_get_url:
url: "{{ falcon_download_url }}"
dest: "{{ falcon_windows_tmp_dir.path }}"
dest: "{{ falcon_install_win_temp_directory.path }}"
url_username: "{{ falcon_download_url_username | default(omit) }}"
url_password: "{{ falcon_download_url_password | default(omit) }}"
when:
- falcon_download_url
- falcon_windows_tmp_dir
- falcon_install_win_temp_directory
register: falcon_sensor_download
retries: "{{ falcon_retries }}"
delay: "{{ falcon_delay }}"
Expand Down

0 comments on commit 2e5f263

Please sign in to comment.