+ main.yml is now fresh.yml for clarity

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
This commit is contained in:
shockrah 2022-04-17 16:42:39 -07:00
parent 99a84d454c
commit fce52683fb
2 changed files with 23 additions and 11 deletions

View File

@ -0,0 +1,23 @@
# 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'

View File

@ -1,11 +0,0 @@
#
---
- hosts: leftcoastlab
tasks:
- name: Import Global Vars
include_vars:
dir: ../vars
- import_playbook: 'system-update.yml'
- import_playbook: 'install-docker.yml'