mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-12 19:06:39 +08:00
Normally it's just a nitpick to not have trailing spaces on variables. However, for some things like mac address, it really matters. Bunches of buildhw's were failing ansibile because they were passing "mac address " to linux-system-roles networking and ansible was going 'huh, nope, I can't find that mac address here at all'. So, just blow all the tailing spaces away to avoid any other variables that hit this. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
31 lines
637 B
Plaintext
31 lines
637 B
Plaintext
---
|
|
# Define resources for this group of hosts here.
|
|
lvm_size: 30000
|
|
mem_size: 2048
|
|
num_cpus: 2
|
|
|
|
# for systems that do not match the above - specify the same parameter in
|
|
# the host_vars/$hostname file
|
|
|
|
udp_ports: [ 53 ]
|
|
tcp_ports: [ 53 ]
|
|
|
|
primary_auth_source: ipa
|
|
ipa_host_group: dns
|
|
ipa_host_group_desc: DNS servers
|
|
ipa_client_shell_groups:
|
|
- sysadmin-dns
|
|
ipa_client_sudo_groups:
|
|
- sysadmin-dns
|
|
|
|
nrpe_procs_warn: 300
|
|
nrpe_procs_crit: 500
|
|
|
|
sudoers: "{{ private }}/files/sudo/sysadmin-dns"
|
|
|
|
csi_security_category: High
|
|
csi_primary_contact: Fedora Admins - admin@fedoraproject.org
|
|
csi_purpose: Domain Name Service
|
|
|
|
nagios_has_named: true
|