makefile: run-authd doesn't force password file path anymore.

This commit is contained in:
Philippe Pittoli 2024-11-25 10:29:05 +01:00
parent 89fcc401a7
commit 313f832471

View File

@ -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.