From bbcc2eaa9dfb209ba8cc34944d77486552b2a8de Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Mon, 18 Nov 2019 05:42:40 +0000 Subject: [PATCH] Shift sample inventory to be single file --- Dockerfile-build | 2 +- README.md | 2 +- inventory/all => inventory | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename inventory/all => inventory (100%) diff --git a/Dockerfile-build b/Dockerfile-build index 23d48682..4b40dbaf 100644 --- a/Dockerfile-build +++ b/Dockerfile-build @@ -20,7 +20,7 @@ COPY . /ansible RUN \ echo "**** running ansible ****" && \ cd /ansible && \ - ansible-playbook -i inventory/all site.yml + ansible-playbook -i inventory site.yml # runtime stage FROM alpine:3.10 diff --git a/README.md b/README.md index 91a53426..aa93db07 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This is a seperate repo for now but will more than likely roll into the existing To generate, run: ``` -ansible-playbook -i inventory/all site.yml +ansible-playbook -i inventory site.yml ``` The build output will be located in /var/www/html on Debian OSs. diff --git a/inventory/all b/inventory similarity index 100% rename from inventory/all rename to inventory