From 179273c22bfea0559e628ac246e2688422355e98 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 12 May 2022 20:29:45 +0100 Subject: [PATCH] Add git chocolatey package install --- roles/git/tasks/Windows.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/roles/git/tasks/Windows.yaml b/roles/git/tasks/Windows.yaml index ca6b41f..6da37fd 100644 --- a/roles/git/tasks/Windows.yaml +++ b/roles/git/tasks/Windows.yaml @@ -1,4 +1,15 @@ --- +- 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}}' @@ -6,4 +17,7 @@ version: master with_items: '{{git_config_repos}}' -# TODO: - name: install pip packages +# - TODO: install pip packages +# win_pip: +# name: '{{git_pip_packages}}' +# state: latest