Some checks failed
Nix Format Check / check-format (push) Failing after 38s
16 lines
526 B
YAML
16 lines
526 B
YAML
- name: Configure all hosts
|
|
hosts: all
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
- name: Include global tasks
|
|
ansible.builtin.import_tasks: tasks/global/global.yml
|
|
|
|
- name: Include workstation tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/workstation.yml
|
|
when: hostname in ['mennos-laptop', 'mennos-desktop']
|
|
|
|
- name: Include server tasks
|
|
ansible.builtin.import_tasks: tasks/servers/server.yml
|
|
when: hostname in ['mennos-server', 'mennos-hobbypc', 'mennos-vm', 'mennos-cloud-server']
|