Files
vpnbot/scripts/check_file.sh
T
2023-04-23 12:54:35 +04:00

6 lines
86 B
Bash

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