Files
zeaslity 437acbeb63 add
2024-10-30 16:30:51 +08:00

13 lines
232 B
Bash

#!/bin/bash
COUNT=`netstat -ntlp | grep rpc | wc -l`
if [ $COUNT -eq 0 ];then
systemctl restart nfs-kernel-server.service
sleep 2
if [ `ps -C nfsd --no-header |wc -l` -eq 0 ];then
killall keepalived
fi
fi