mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
win_package: remove case sensitive check for msi extension (#34476)
This commit is contained in:
@@ -267,7 +267,7 @@
|
||||
|
||||
- name: install local msi with arguments (check mode)
|
||||
win_package:
|
||||
path: '{{test_win_package_path}}\good.msi'
|
||||
path: '{{test_win_package_path}}\good.MSI'
|
||||
state: present
|
||||
arguments: ADDLOCAL=Cow
|
||||
register: install_msi_argument_check
|
||||
@@ -293,7 +293,7 @@
|
||||
|
||||
- name: install local msi with arguments
|
||||
win_package:
|
||||
path: '{{test_win_package_path}}\good.msi'
|
||||
path: '{{test_win_package_path}}\good.MSI'
|
||||
state: present
|
||||
arguments: ADDLOCAL=Cow
|
||||
register: install_msi_argument
|
||||
@@ -319,7 +319,7 @@
|
||||
|
||||
- name: install local msi with arguments (idempotent)
|
||||
win_package:
|
||||
path: '{{test_win_package_path}}\good.msi'
|
||||
path: '{{test_win_package_path}}\good.MSI'
|
||||
state: present
|
||||
arguments: ADDLOCAL=Cow
|
||||
register: install_msi_argument_again
|
||||
|
||||
Reference in New Issue
Block a user