From 76aa2030fbbbb78e76d5d6bf80139a5e1829e7ad Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sat, 2 Nov 2019 19:30:39 +0000 Subject: [PATCH] final cleanup before production deployment Removed host_vars folder and added inventories folder. This is to support the suggested 'Alternative Directory Layout' in the upstream Ansible documentation. Removed hosts.yml. This may be added in the upcoming examples directory. --- .gitignore | 4 ++-- hosts.yml | 12 ------------ {host_vars => inventories}/.gitkeep | 0 3 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 hosts.yml rename {host_vars => inventories}/.gitkeep (100%) diff --git a/.gitignore b/.gitignore index 5a83f4c..08c588b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -host_vars/* -!host_vars/.gitkeep +inventories/* +!inventories/.gitkeep diff --git a/hosts.yml b/hosts.yml deleted file mode 100644 index 3184b25..0000000 --- a/hosts.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -all: - children: - pleroma_database: - hosts: - pleroma: - pleroma_backend: - hosts: - pleroma: - pleroma_webserver: - hosts: - pleroma: diff --git a/host_vars/.gitkeep b/inventories/.gitkeep similarity index 100% rename from host_vars/.gitkeep rename to inventories/.gitkeep