25 lines
823 B
YAML
Executable file
25 lines
823 B
YAML
Executable file
---
|
|
- name: Check for minimal Ansible version
|
|
assert:
|
|
that: "ansible_version.full is version_compare(ansible_version_minimum, '>=')"
|
|
msg: "You must update Ansible to at least version {{ ansible_version_minimum }}."
|
|
run_once: True
|
|
|
|
- name: Check basic DNS entries and target distribution
|
|
assert:
|
|
that:
|
|
- "dns_host_ipv4_address in ansible_all_ipv4_addresses"
|
|
- "dns_host_ipv6_address in ansible_all_ipv6_addresses"
|
|
- "ansible_distribution == 'Debian'"
|
|
- "ansible_distribution_major_version == '9'"
|
|
|
|
- name: Check gateway specific DNS entries
|
|
when: server_type == "gateway"
|
|
assert:
|
|
that:
|
|
- "dns_gate_num_cname == inventory_hostname"
|
|
- "dns_gate_icvpn_cname == inventory_hostname"
|
|
|
|
- name: Test root access for admin account
|
|
command: "true"
|
|
changed_when: False
|