also check for boundary pid

This commit is contained in:
Cian Johnston 2026-01-07 16:29:57 +00:00
parent 4aa4448d81
commit fa8147e1bb
No known key found for this signature in database
GPG Key ID: F57401F0A40CBB29

View File

@ -24,6 +24,12 @@ while true; do
else
echo "$(date): agentapi pid: $agentapi_pid"
fi
boundary_pid=$(pidof boundary)
if [ -z "$boundary_pid" ]; then
echo "$(date): boundary process not found"
else
echo "$(date): boundary pid: $boundary_pid"
fi
sleep 1
continue
fi