Update to 2022-03-04 18:00

This commit is contained in:
Daniel Berteaud
2022-03-04 18:00:06 +01:00
parent f8eb615f1a
commit 6918bfc1ce
17 changed files with 190 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash -e
if [[ "${SFTPGO_AUTHD_USERNAME:=}" != "anonymous" ]]; then
cat <<_EOF
{
"status": 2,
"to_verify": "${SFTPGO_AUTHD_PASSWORD:=}"
}
_EOF
else
cat <<_EOF
{
"status": 1
}
_EOF
fi