Removed probe.yml

This commit is contained in:
iotux
2026-01-01 07:51:19 +01:00
parent 1d118b4852
commit 8308161962
-25
View File
@@ -1,25 +0,0 @@
name: CI Probe
on:
push:
workflow_dispatch:
jobs:
investigate:
runs-on: ubuntu-22.04
steps:
- name: Check Systemd
run: |
echo "1. Checking PID 1..."
ps -p 1 -o comm=
- name: Check Service Status
run: |
echo "2. Checking if cron is active..."
if systemctl is-active cron; then
echo "✅ SUCCESS: cron is active via systemctl"
else
echo "❌ FAIL: systemctl returned error"
exit 1
fi