Compare commits

...

2 Commits

4 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,14 @@
---
- name: install chocolatey package
win_chocolatey:
name: firefox
package_params: >-
/l:en-GB
/NoDesktopShortcut
/NoAutoUpdate
state: latest
# - TODO: create extensions directory
# file:
# path: '{{ansible_env.ProgramFiles}}/Mozilla Firefox/distribution/extensions'
# state: directory

View File

@ -0,0 +1,2 @@
---
- include_tasks: '{{ansible_os_family}}.yaml'

View File

@ -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 - name: clone config repos
win_git: win_git:
repo: '{{item.repo}}' repo: '{{item.repo}}'
@ -6,4 +17,7 @@
version: master version: master
with_items: '{{git_config_repos}}' with_items: '{{git_config_repos}}'
# TODO: - name: install pip packages # - TODO: install pip packages
# win_pip:
# name: '{{git_pip_packages}}'
# state: latest

View File

@ -25,3 +25,4 @@
- role: 1password - role: 1password
- role: autohotkey - role: autohotkey
- role: firefox