fce52683fb
main.yml was really only ever going to be used in case of fresh installs anyway so this change aims to make that intention clear
24 lines
583 B
YAML
24 lines
583 B
YAML
# Setup a brand new system from the ground up.
|
|
---
|
|
- hosts: leftcoastlab
|
|
tasks:
|
|
- name: Import Global Vars
|
|
include_vars:
|
|
dir: ../vars
|
|
|
|
|
|
# System pre-reqs
|
|
- import_playbook: 'system-update.yml'
|
|
- import_playbook: 'install-docker.yml'
|
|
- import_playbook: 'dns.yml'
|
|
# Logging stack
|
|
- import_playbook: 'install-loki-logger.yml'
|
|
- import_playbook: 'grafana.yml'
|
|
# For host metrics
|
|
- import_playbook: 'vector.yml'
|
|
# Containerized services
|
|
- import_playbook: 'file-server.yml'
|
|
- import_playbook: 'git-stack.yml'
|
|
- import_playbook: 'subsonic.yml'
|
|
- import_playbook: 'nginx.yml'
|