2018-01-11 15:33:54 +01:00
|
|
|
---
|
2018-05-15 10:21:21 +02:00
|
|
|
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
|
|
|
#
|
|
|
|
# ipr-cnrs.basics default variables [[[
|
|
|
|
# =====================================
|
2018-01-11 15:33:54 +01:00
|
|
|
|
|
|
|
# Domain
|
|
|
|
basics__domain: "{{ ansible_domain }}"
|
|
|
|
|
|
|
|
# Manage /etc/hosts
|
|
|
|
basics__hosts_localhost_manage: false
|
2018-01-12 10:41:29 +01:00
|
|
|
basics__hosts_localhost_content: "localhost.localdomain localhost"
|
2018-01-11 15:33:54 +01:00
|
|
|
basics__hosts_ipv4_manage: false
|
|
|
|
basics__hosts_ipv4_content: "{{ ansible_hostname }}.{{ basics__domain }} {{ ansible_hostname }}"
|
|
|
|
|
2018-02-26 16:19:49 +01:00
|
|
|
# Proxmox
|
2018-03-01 11:09:08 +01:00
|
|
|
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 11:27:41 +02:00
|
|
|
#
|
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
|
|
|
|
|
|
|
|
# ]]]
|
2018-05-15 11:08:08 +02:00
|
|
|
# .. envvar:: basics__resolvconf_domains [[[
|
|
|
|
#
|
|
|
|
# List of domains used as search suffixes when resolving host names.
|
|
|
|
#
|
|
|
|
basics__resolvconf_domains:
|
|
|
|
- '{{ ansible_domain }}'
|
|
|
|
|
2018-05-15 11:27:41 +02:00
|
|
|
# ]]]
|
|
|
|
# .. envvar:: basics__resolvconf_nameservers [[[
|
|
|
|
#
|
|
|
|
# List of nameservers to use to resolv host names.
|
|
|
|
#
|
|
|
|
basics__resolvconf_nameservers: '{{ ansible_dns.nameservers }}'
|
|
|
|
|
2018-05-15 11:08:08 +02:00
|
|
|
# ]]]
|
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
|
|
|
|
|
|
|
# ]]]
|