Compare commits

..

No commits in common. "01c1ca74a3ca50d67642200546b9d0c530dcc5dd" and "69cb941a8592c43c84cde3c51da74c3b490b0186" have entirely different histories.

7 changed files with 14 additions and 10 deletions

View File

@ -1,3 +0,0 @@
---
- import_playbook: Unix.yaml
- import_playbook: Windows.yaml

View File

@ -1,4 +1,14 @@
---
- import_playbook: unix.yaml
- hosts: localhost
# FIXME: Roles which depend on the win_git module can't be in the same
# playbook on the first run because the wsl role hasn't added the win_git
# module to the modules path yet.
roles:
- role: wsl
- hosts: windows
roles:

View File

@ -1,5 +1,5 @@
---
- name: install chocolatey package
- name: install choco package
win_chocolatey:
name: ag
state: latest

View File

@ -1,5 +1,5 @@
---
- name: install chocolatey packages
- name: install choco packages
win_chocolatey:
name: neovim
state: latest

View File

@ -1,5 +1,5 @@
---
- name: install chocolatey package
- name: install choco package
win_chocolatey:
name: nodejs
state: latest

View File

@ -1,5 +1,5 @@
---
- name: install chocolatey package
- name: install choco package
win_chocolatey:
name: tree
state: latest

View File

@ -15,6 +15,3 @@
- role: llvm
- role: nodejs
- role: python
- role: wsl
when: '"WSL" in ansible_kernel'