Files
nms_cxy/build/system/usr/local/omc/bin/checkproc.sh
2024-07-10 17:39:42 +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