6 lines
214 B
Bash
Executable File
6 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
echo "Fri Mar 6 14:06:32 UTC 2026: EMERGENCY SEND DISABLE" > /tmp/SEND_DISABLED
|
|
pkill -f 'ethica.*send'
|
|
pkill -f 'brain.*send'
|
|
echo "All send processes killed. Remove /tmp/SEND_DISABLED to re-enable."
|