This commit is contained in:
L3D 2024-02-27 15:18:58 +01:00
parent 1299bc6c70
commit f04c679363
Signed by: l3d
GPG key ID: CD08445BFF4313D1
5 changed files with 7 additions and 4 deletions

6
.gitmodules vendored
View file

@ -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,6 @@
[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

@ -1 +0,0 @@
Subproject commit 588af79d4fb2255c0d1139fd1179c72efa20770b

View file

@ -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

@ -0,0 +1 @@
Subproject commit 5322f83dfb4385e2fe9d9db1a47220daf3e99cd5

View file

@ -8,6 +8,7 @@
- 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}