Refactor server roles into one that handles all OS physical or virtual

This commit is contained in:
2020-04-08 15:49:12 -06:00
parent 6413923378
commit 957ff8bb8e
89 changed files with 373 additions and 97 deletions

View File

@@ -0,0 +1,20 @@
---
# Debian Server
# ------------------------------------------------------------------------------
- name: Configuring debian/ubuntu server
include_tasks: all.yml
# Physical Debian Server
# ------------------------------------------------------------------------------
- name: Configuring physical debian/ubuntu server
include_tasks: physical.yml
when: type == 'physical'
# Virtual Debian Server
# ------------------------------------------------------------------------------
# Currently NO virtual specific debian customizations
#- name: Configuring virtual debian/ubuntu server
# include_tasks: virtual.yml
# when: type == 'virtual'