improve installation, adding features and packages
This commit is contained in:
parent
9adc1114c1
commit
519b5fab06
6 changed files with 21 additions and 2 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -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
14
.yamllint
Normal 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/
|
|
@ -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
|
1
roles/do1jlr.win_obs_setup
Submodule
1
roles/do1jlr.win_obs_setup
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit c7de0373770c894b9b1e07f8794d6d5e8b94a1e2
|
1
site.yml
1
site.yml
|
@ -3,3 +3,4 @@
|
|||
hosts: obs
|
||||
roles:
|
||||
- {role: do1jlr.win_base_setup, tags: [user, setup]}
|
||||
- {role: do1jlr.win_obs_setup, tags: [user, obs]}
|
||||
|
|
Loading…
Reference in a new issue