This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
ansible.basics/defaults/main.yml

13 lines
337 B
YAML

---
# defaults file for basics
# Domain
basics__domain: "{{ ansible_domain }}"
# Manage /etc/hosts
basics__hosts_localhost_manage: false
basics__hosts_localhost_content: "localhost.localdomain localhost"
basics__hosts_ipv4_manage: false
basics__hosts_ipv4_content: "{{ ansible_hostname }}.{{ basics__domain }} {{ ansible_hostname }}"