Files
nms_cxy/build/misc/checkproc.sh
2024-03-19 20:20:12 +08:00

8 lines
171 B
Bash

#!/bin/bash
process_name="omc"
if ! pgrep -x "$process_name" >/dev/null; then
echo "$process_name is not running. Restarting..."
systemctl restart keepalived
fi