Files
nms_cxy/build/debbuild/usr/local/omc/bin/checkproc.sh
2024-07-10 14:25:53 +08:00

8 lines
177 B
Bash

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