Makes installation of Ansible optional (default: no) and installs additional python libraries (#2)

Fixed accidental change of default update_hostname behaviour

Makes installation of Ansible optional (default: no) and installs additional python libraries

Co-authored-by: Jan Beilicke <dev@jotbe.io>
This commit is contained in:
Jan Beilicke 2021-03-27 13:31:24 +00:00
parent 2953f200a1
commit 6335b7735a
3 changed files with 16 additions and 4 deletions

View file

@ -1,6 +1,6 @@
---
# defaults file for common
hostname: '{{ inventory_hostname }}'
hostname: "{{ inventory_hostname }}"
update_hostname: yes
locales_gen:
- en_US.UTF-8
@ -11,6 +11,10 @@ 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