24 lines
523 B
YAML
24 lines
523 B
YAML
---
|
|
- name: install chocolatey package
|
|
win_chocolatey:
|
|
name: git
|
|
package_params: >-
|
|
/GitAndUnixToolsOnPath
|
|
/NoShellIntegration
|
|
/NoGuiHereIntegration
|
|
/NoCredentialManager
|
|
/NoOpenSSH
|
|
state: latest
|
|
|
|
- name: clone config repos
|
|
win_git:
|
|
repo: '{{item.repo}}'
|
|
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
|
version: master
|
|
with_items: '{{git_config_repos}}'
|
|
|
|
# - TODO: install pip packages
|
|
# win_pip:
|
|
# name: '{{git_pip_packages}}'
|
|
# state: latest
|