Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Quirino <iquirino91@gmail.com>2018-05-07 22:28:53 +0300
committerGitHub <noreply@github.com>2018-05-07 22:28:53 +0300
commit791e9ad72e2efa79c65aa8edfaf5ae911ddb30f5 (patch)
treeaa5fcdd85738517a0e75cf1e9dbf63624019841d
parentc11ffef050b275ae4f3fd8d76911cf8afc3ebd50 (diff)
The win_msi module has been deprecated
Removed in Ansible: version: 2.8 Why: The win_msi module has a number of issues, the win_package module is easier to maintain and use. Alternative: Use win_package instead.
-rw-r--r--windows/install-msi.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/install-msi.yml b/windows/install-msi.yml
index 897b994..7952873 100644
--- a/windows/install-msi.yml
+++ b/windows/install-msi.yml
@@ -9,7 +9,7 @@
dest: 'C:\Users\Administrator\Downloads\httpd-2.2.25-win32-x86-no_ssl.msi'
- name: Install MSI
- win_msi:
+ win_package:
path: 'C:\Users\Administrator\Downloads\httpd-2.2.25-win32-x86-no_ssl.msi'
state: present