Compare commits
2 commits
1299bc6c70
...
be51bcdcbb
Author | SHA1 | Date | |
---|---|---|---|
be51bcdcbb | |||
f04c679363 |
5 changed files with 12 additions and 5 deletions
9
.gitmodules
vendored
9
.gitmodules
vendored
|
@ -7,9 +7,6 @@
|
|||
[submodule "roles/win_activating"]
|
||||
path = roles/win_activating
|
||||
url = https://git.l3d.ch/voc/win_ansible_role_activating.git
|
||||
[submodule "collections/ansible_collections/ansible/windows"]
|
||||
path = collections/ansible_collections/ansible/windows
|
||||
url = https://github.com/ansible-collections/community.windows
|
||||
[submodule "collections/ansible_collections/chocolatey"]
|
||||
path = collections/ansible_collections/chocolatey
|
||||
url = https://github.com/chocolatey/chocolatey-ansible.git
|
||||
|
@ -22,3 +19,9 @@
|
|||
[submodule "roles/l3d.wireguard"]
|
||||
path = roles/l3d.wireguard
|
||||
url = https://git.l3d.ch/win_ansible/ansible_role_win_wireguard.git
|
||||
[submodule "roles/l3d.choco"]
|
||||
path = roles/l3d.choco
|
||||
url = https://git.l3d.ch/win_ansible/ansible_role_win_chocolatey.git
|
||||
[submodule "collections/ansible_collections/ansible/windows"]
|
||||
path = collections/ansible_collections/ansible/windows
|
||||
url = https://github.com/ansible-collections/ansible.windows.git
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 588af79d4fb2255c0d1139fd1179c72efa20770b
|
||||
Subproject commit c207ed49ddf73f152f56817787824a2c4ba93226
|
|
@ -2,6 +2,8 @@
|
|||
## connect to windows
|
||||
ansible_connection: 'ssh'
|
||||
ansible_shell_type: 'powershell'
|
||||
ansible_pipelining: true
|
||||
ansible_password: "{{ lookup('community.general.passwordstore', 'ansible/windows/' + inventory_hostname + '/login/' + ansible_user) }}"
|
||||
|
||||
# win_activating
|
||||
windows_product_key: "{{ lookup('community.general.passwordstore', 'ansible/windows/productkey') }}"
|
||||
|
|
1
roles/l3d.choco
Submodule
1
roles/l3d.choco
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 5322f83dfb4385e2fe9d9db1a47220daf3e99cd5
|
3
site.yml
3
site.yml
|
@ -8,7 +8,8 @@
|
|||
- name: Deploy windows users and basic config
|
||||
hosts: desktop
|
||||
roles:
|
||||
- {role: l3d.choco, tags: choco}
|
||||
- {role: win_activating, tags: zeroconf}
|
||||
- {role: win_zeroconf, tags: zeroconf}
|
||||
- {role: win_gopass, tags: gopass}
|
||||
# - {role: win_gopass, tags: gopass}
|
||||
- {role: l3d.wireguard, tags: wireguard}
|
||||
|
|
Loading…
Reference in a new issue