2022-04-18 11:44:42 -05:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
---
|
|
|
|
# Preambulatory system configuration
|
|
|
|
# It's implicit that configuration here MUST preceed site_main.yml
|
|
|
|
- import_playbook: all.yml
|
|
|
|
# Platform configuration
|
|
|
|
- import_playbook: platforms_ubuntu-20-04.yml
|
|
|
|
- import_playbook: platforms_ubuntu-21-10.yml
|
2022-04-18 11:15:31 -05:00
|
|
|
- import_playbook: platforms_ubuntu-22-04.yml
|
2022-08-28 11:39:48 -05:00
|
|
|
- import_playbook: platforms_fedora-kinoite.yml
|
2022-04-18 11:44:42 -05:00
|
|
|
- import_playbook: platforms_proxmox-ve-7.yml
|
|
|
|
# Manufacturer configuration
|
|
|
|
- import_playbook: manufacturers_raspi.yml
|
|
|
|
- import_playbook: manufacturers_s76.yml
|
|
|
|
# Zerotier network configuration
|
|
|
|
- import_playbook: tags_zt-personal.yml
|
|
|
|
- import_playbook: tags_zt-management.yml
|
|
|
|
# Tags for fundamental services
|
|
|
|
- import_playbook: tags_snmp.yml
|
|
|
|
- import_playbook: tags_nagios.yml
|
|
|
|
# Role (in the Netbox sense) configuration
|
|
|
|
- import_playbook: device_roles_bastion.yml
|
|
|
|
- import_playbook: device_roles_game.yml
|
|
|
|
- import_playbook: device_roles_workstation.yml
|