Added Windows templates (#1)

add windows demos
This commit is contained in:
MKletz
2022-02-15 13:21:10 -06:00
committed by GitHub
parent b1ce718762
commit 6412c17e51
7 changed files with 192 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
---
- name: Chocolatey install multiple
hosts: "{{ HOSTS | default('windows') }}"
gather_facts: false
vars:
choco_packages:
- name: nodejs
version: 13.0.0
- name: python
version: 3.6.0
tasks:
- name: Install specific versions of packages sequentially
win_chocolatey:
name: "{{ item.name }}"
version: "{{ item.version }}"
loop: "{{ choco_packages }}"
- name: Check python version
win_command: python --version
register: check_python_version
changed_when: false
- name: Check nodejs version
win_command: node --version
register: check_node_version
changed_when: false
- debug:
msg: Python Version is {{ check_python_version.stdout_lines[0] }} and NodeJS version is {{ check_node_version.stdout_lines[0] }}