From 0721e9bcfd9b7b5e2cf6c395d9d4a58c4b8accdf Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Wed, 28 Feb 2024 12:28:59 +0100 Subject: [PATCH] docs: Add dependency documentation --- Makefile | 2 +- README.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0fd9669..3a50dbb 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ wg: @cd ansible && ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -i ../inventory/lab.yml -i ../inventory/outsider.yml init.yml --extra-vars "enable_setup=false enable_wireguard=true enable_k3s=false" ansible: - INV_LIST="-i ../inventory/lab.yml"; \ + @INV_LIST="-i ../inventory/lab.yml"; \ if [ x"${VPS}" != "x" ]; then \ INV_LIST="$${INV_LIST} -i ../inventory/outside.yml"; \ fi; \ diff --git a/README.md b/README.md index f031d58..2ed055a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,17 @@ # Homelab ## Dependencies +- git +- make - Vagrant - ansible - vagrant-scp +### Ubuntu +``` +apt install make git vagrant ansible +``` + ## Setup Clone the whole repository, including submodules ```