Files
vpnbot/scripts/check_file.sh
T
2024-03-02 15:05:21 +04:00

6 lines
101 B
Bash

if [[ -f "/start" && -f "/ssh/key.pub" && -s "/ssh/key.pub" ]]; then
exit 0;
else
exit 1;
fi