fix!: fixed molecule tests, rewrote how custom variables are handled for hosts overrides; fixed invalid services names for clamav handlers
This commit is contained in:
parent
6026cfd195
commit
dafa3fbc54
23 changed files with 238 additions and 159 deletions
|
@ -2,18 +2,22 @@ ansible_become_password: "{{ vault_root_pass }}"
|
|||
ansible_host: "{{ vault_ansible_host }}"
|
||||
ansible_connection: local
|
||||
|
||||
custom_sysctl:
|
||||
'fs.inotify.max_user_watches': 1048576
|
||||
'vm.swappiness': 1
|
||||
custom_development:
|
||||
rust:
|
||||
enable: true
|
||||
|
||||
common_apt_packages:
|
||||
- pcscd
|
||||
- pinentry-curses
|
||||
- radeontop
|
||||
|
||||
common_gitconfig_enable: true
|
||||
common_gitconfig_username: "{{ vault_common_gitconfig_username }}"
|
||||
common_gitconfig_email: "{{ vault_common_gitconfig_email }}"
|
||||
common_gitconfig_force_sign: true
|
||||
common_gitconfig_signingkey: "{{ vault_common_gitconfig_signingkey }}"
|
||||
common_install_fonts: true
|
||||
custom_common:
|
||||
sysctl:
|
||||
'fs.inotify.max_user_watches': 1048576
|
||||
'vm.swappiness': 1
|
||||
packages:
|
||||
- pcscd
|
||||
- pinentry-curses
|
||||
- radeontop
|
||||
git:
|
||||
enable: true
|
||||
username: "{{ vault_common_gitconfig_username }}"
|
||||
email: "{{ vault_common_gitconfig_email }}"
|
||||
force_sign: true
|
||||
signing_key: "{{ vault_common_gitconfig_signingkey }}"
|
||||
install_fonts: true
|
||||
|
|
|
@ -2,20 +2,22 @@ ansible_become_password: "{{ vault_root_pass }}"
|
|||
ansible_host: "{{ vault_ansible_host }}"
|
||||
ansible_connection: local
|
||||
|
||||
custom_sysctl:
|
||||
'fs.inotify.max_user_watches': 1048576
|
||||
'vm.swappiness': 1
|
||||
custom_development:
|
||||
rust:
|
||||
enable: true
|
||||
|
||||
common_apt_packages:
|
||||
- pcscd
|
||||
- pinentry-curses
|
||||
- radeontop
|
||||
|
||||
common_gitconfig_enable: true
|
||||
common_gitconfig_username: "{{ vault_common_gitconfig_username }}"
|
||||
common_gitconfig_email: "{{ vault_common_gitconfig_email }}"
|
||||
common_gitconfig_force_sign: true
|
||||
common_gitconfig_signingkey: "{{ vault_common_gitconfig_signingkey }}"
|
||||
common_install_fonts: true
|
||||
|
||||
development_install_rust: true
|
||||
custom_common:
|
||||
sysctl:
|
||||
'fs.inotify.max_user_watches': 1048576
|
||||
'vm.swappiness': 1
|
||||
packages:
|
||||
- pcscd
|
||||
- pinentry-curses
|
||||
- radeontop
|
||||
git:
|
||||
enable: true
|
||||
username: "{{ vault_common_gitconfig_username }}"
|
||||
email: "{{ vault_common_gitconfig_email }}"
|
||||
force_sign: true
|
||||
signing_key: "{{ vault_common_gitconfig_signingkey }}"
|
||||
install_fonts: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue