From 313f8324710758c41d0b783e4c2f0634e16815ec Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Mon, 25 Nov 2024 10:29:05 +0100 Subject: [PATCH] makefile: run-authd doesn't force password file path anymore. --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index cc8b326..80825eb 100644 --- a/makefile +++ b/makefile @@ -25,7 +25,10 @@ setup: @[ -f $(PASSWORD_FILE) ] || echo -n "coucou" > $(PASSWORD_FILE) DATA_DIRECTORY ?= /tmp/DATA-AUTHD -run-authd: setup +run-authd: + ./bin/authd -R -E --storage $(DATA_DIRECTORY) + +test-authd: setup ./bin/authd -k $(PASSWORD_FILE) -R -E --storage $(DATA_DIRECTORY) # First user always is the admin.