improve installation, adding features and packages

This commit is contained in:
L3D 2021-12-20 19:56:51 +01:00
parent 9adc1114c1
commit 519b5fab06
Signed by: l3d
GPG key ID: CD08445BFF4313D1
6 changed files with 21 additions and 2 deletions

3
.gitmodules vendored
View file

@ -1,3 +1,6 @@
[submodule "roles/setup_user"]
path = roles/do1jlr.win_base_setup
url = https://backwesen.de/voc/win_ansible_role_base_setup.git
[submodule "roles/do1jlr.win_obs_setup"]
path = roles/do1jlr.win_obs_setup
url = https://backwesen.de/voc/win_ansible_role_obs_setup.git

14
.yamllint Normal file
View file

@ -0,0 +1,14 @@
---
extends: default
rules:
# 150 chars should be enough, but don't fail if a line is longer
line-length:
max: 180
level: warning
ignore: |
host_vars/mail01.l3d.space/vault.yml
host_vars/web01.l3d.space/vault.yml
group_vars/all/vault.yml
roles/

View file

@ -2,4 +2,4 @@
ansible_connection: winrm
ansible_user: ansible
ansible_winrm_server_cert_validation: ignore
ansible_password: "{{ lookup('community.general.passwordstore', 'ansible/windows/' + inventory_hostname + '/password') }}"
ansible_password: "{{ lookup('community.general.passwordstore', 'ansible/windows/' + inventory_hostname + '/login/' + ansible_user) }}"

@ -1 +1 @@
Subproject commit 64a25c272e08feb36d71ec4dccabaee6fe0c04c1
Subproject commit 3026ccda415fd94d3d2450c9409829537d2e2a14

@ -0,0 +1 @@
Subproject commit c7de0373770c894b9b1e07f8794d6d5e8b94a1e2

View file

@ -3,3 +3,4 @@
hosts: obs
roles:
- {role: do1jlr.win_base_setup, tags: [user, setup]}
- {role: do1jlr.win_obs_setup, tags: [user, obs]}