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

63 lines
1.8 KiB
YAML
Raw Normal View History

---
2018-05-15 10:21:21 +02:00
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
#
# ipr-cnrs.basics default variables [[[
# =====================================
# 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 }}"
# Proxmox
basics__proxmox_disable: []
basics__proxmox_group_disable: []
basics__proxmox_host_disable: []
2018-05-15 10:21:21 +02:00
# Resolvconf [[[
# --------------
# .. envvar:: basics__resolvconf_packages [[[
#
# List of Resolvconf packages to install.
#
2018-05-15 10:21:21 +02:00
basics__resolvconf_packages:
- 'resolvconf'
# ]]]
# .. envvar:: basics__resolvconf_enabled [[[
#
# Enable or disable support for Resolvconf on a given host. Disabling this
# option does not remove existing installation and configuration.
#
basics__resolvconf_enabled: False
# ]]]
# .. envvar:: basics__resolvconf_domains [[[
#
# List of domains used as search suffixes when resolving host names.
#
basics__resolvconf_domains:
- '{{ ansible_domain }}'
# ]]]
# .. envvar:: basics__resolvconf_nameservers [[[
#
# List of nameservers to use to resolv host names.
#
basics__resolvconf_nameservers: '{{ ansible_dns.nameservers }}'
# ]]]
2018-05-15 11:15:39 +02:00
# .. envvar:: basics__resolvconf_service_name [[[
#
# The Resolvconf service name to manage.
basics__resolvconf_service_name: 'resolvconf'
# ]]]
2018-05-15 10:21:21 +02:00
# ]]]