docs: Add dependency documentation

This commit is contained in:
Tanguy Herbron 2024-02-28 12:28:59 +01:00
parent bdbf8ea389
commit 0721e9bcfd
2 changed files with 8 additions and 1 deletions

View File

@ -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" @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: ansible:
INV_LIST="-i ../inventory/lab.yml"; \ @INV_LIST="-i ../inventory/lab.yml"; \
if [ x"${VPS}" != "x" ]; then \ if [ x"${VPS}" != "x" ]; then \
INV_LIST="$${INV_LIST} -i ../inventory/outside.yml"; \ INV_LIST="$${INV_LIST} -i ../inventory/outside.yml"; \
fi; \ fi; \

View File

@ -1,10 +1,17 @@
# Homelab # Homelab
## Dependencies ## Dependencies
- git
- make
- Vagrant - Vagrant
- ansible - ansible
- vagrant-scp - vagrant-scp
### Ubuntu
```
apt install make git vagrant ansible
```
## Setup ## Setup
Clone the whole repository, including submodules Clone the whole repository, including submodules
``` ```