Initial BitNet s9pk package with SSH access

This commit is contained in:
GERTY
2026-05-12 22:31:18 +00:00
commit 6e8a8f5b59
10 changed files with 429 additions and 0 deletions

10
scripts/health_check.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
set -e
# Check if SSH daemon is running
if pgrep -x sshd > /dev/null; then
exit 0
else
echo "SSH daemon is not running"
exit 1
fi