27 lines
No EOL
831 B
YAML
27 lines
No EOL
831 B
YAML
---
|
|
# defaults file for common
|
|
hostname: "{{ inventory_hostname }}"
|
|
update_hostname: yes
|
|
locales_gen:
|
|
- en_US.UTF-8
|
|
- de_DE.UTF-8
|
|
locales_default: de_DE.UTF-8
|
|
x11_keymap: de
|
|
users:
|
|
- vagrant
|
|
sudoers:
|
|
- vagrant
|
|
enable_ansible: no
|
|
# Will install a specific Ansible version on the target host
|
|
ensure_ansible_version: 2.10.3
|
|
# Allow sudo with a password (applied to group sudo)
|
|
enable_sudo: yes
|
|
# Allow passwordless sudo (applied to group wheel)
|
|
enable_passwordless_sudo: yes
|
|
# Allow root to connect through SSH
|
|
enable_ssh_for_root: yes
|
|
# Allow root to connect only using public key authentication, no password
|
|
enable_ssh_for_root_prohibit_password: no
|
|
# Skip provisioning of the firewall
|
|
skip_firewall: no
|
|
authorized_keys_are_exclusive: false # Be careful, this will delete non-Ansible-managed authorized keys from the target! |