docker-ftps/rootfs/app/healthcheck.sh
Paolo Asperti 8289114ee6
All checks were successful
continuous-integration/drone/push Build is passing
sql auth and healthcheck
2024-02-11 21:09:40 +01:00

8 lines
263 B
Bash
Executable File

#!/bin/sh
USER=healthcheck
LFTP_PASSWORD=$(cat /app/healthcheck.pwd)
lftp -e "set ssl-allow true; set ftp:ssl-force true; set ftp:passive-mode true;set ssl:verify-certificate false;open -u ${USER},${LFTP_PASSWORD} ftp://127.0.0.1; ls ; bye" > /dev/null
echo $?