From 3ab9170c8f245bca20470b51326a4fd747613db6 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 10 Mar 2026 23:42:51 +0100 Subject: [PATCH] [wg] update requirements check --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 1ae0425..8de02ab 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,9 @@ include wg.mk .PHONY: check check: ## Check you have all dependencies @command -v graph-easy >/dev/null || { echo "Install perl-graph-easy" && exit 1 ;} + @command -v ansible >/dev/null || { echo "Install ansible" && exit 1 ;} @command -v recsel >/dev/null || { echo "Install recutils" && exit 1 ;} + @command -v wg >/dev/null || { echo "Install wireguard" && exit 1 ;} @command -v lowdown >/dev/null || { echo "Install lowdown" && exit 1 ;} @echo "All dependencies installed"