From 0466acc2eb6f2fb400a35fb838605a9ff4dfb186 Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Wed, 5 Jul 2017 07:49:00 +0200 Subject: [PATCH] Mention audit logging in README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d71546f..5f43ee5 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,9 @@ Packages are available for: response to the client. The last one lets you stream images or binaries to the browser. - Run scripts as different users without requiring sudo. +- Audit log: All form submissions including entered values can be logged to a + logfile for auditing. + ## Use-cases @@ -90,7 +93,7 @@ The script `job_add_user.sh`: echo "Passwords do not match" >&2; exit 1 fi - htpasswd -s -b .htpasswd $username $password1 || exit $? + htpasswd -s -b .htpasswd "$username" "$password1" || exit $? echo "User created or password updated"