55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
---
|
|
# .. 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: []
|
|
|
|
# Resolvconf [[[
|
|
# --------------
|
|
|
|
# .. envvar:: basics__resolvconf_packages [[[
|
|
#
|
|
# List of Resolvconf packages to install.
|
|
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_service_name [[[
|
|
#
|
|
# The Resolvconf service name to manage.
|
|
basics__resolvconf_service_name: 'resolvconf'
|
|
|
|
# ]]]
|
|
|
|
# ]]]
|