支持exe軟件包的ansible模塊,蒐集了2個:
win_package (本次使用這個)
官方文檔:http://docs.ansible.com/ansible/latest/modules/win_package_module.html
win_chocolatey
官方文檔:http://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.htmlhtml
以安裝vc2013(32位)軟件包vcredist_x86.exe爲例:redis
手動安裝vcredist_x86.exe,獲得product_id:
{13A4EE12-23EA-3371-91EE-EFB36DDFFF3E}windows
編寫playbookide
[root@xxx ~]# cat vc.yaml --- - name: Install vc gather_facts: False hosts: all tasks: - name: install vc 2013 win_package: path: D:\upload\vcredist_x86.exe product_id: '{13A4EE12-23EA-3371-91EE-EFB36DDFFF3E}' arguments: /install /passive /norestart
(完成)rest