20 lines
778 B
YAML
20 lines
778 B
YAML
---
|
|
# Debian server
|
|
# Run first to install base software required for agnostic/main.yml
|
|
# ------------------------------------------------------------------------------
|
|
- name: Configure debian/ubuntu server
|
|
include_tasks: debian/main.yml
|
|
when: ansible_os_family == "Debian"
|
|
|
|
# Manjaro server
|
|
# Run first to install base software required for agnostic/main.yml
|
|
# ------------------------------------------------------------------------------
|
|
- name: Configure Manjaro server
|
|
include_tasks: manjaro/main.yml
|
|
when: ansible_os_family == "Archlinux" and ansible_lsb.id == "ManjaroLinux"
|
|
|
|
# Any server (OS agnostic)
|
|
# ------------------------------------------------------------------------------
|
|
- name: Configure any server (OS agnostic)
|
|
include_tasks: agnostic/main.yml
|