美文网首页
检测NFS状态脚本

检测NFS状态脚本

作者: Miacis | 来源:发表于2020-04-29 17:16 被阅读0次

    脚本1

    # read -t1 < <(stat -t "$mountpoint" 2>&-) 将保留一个文件描述符(或类似)到安装的文件夹
    # 但是,如果不使用 '-' 标志,mount选项将失败
    # 使用 timeout 1 stat -t "$mountpoint" >/dev/null 
    # 将杀死 'stat' 命令,因此可以杀死它打开的文件描述符
    
    #/bin/bash
    mountpoint="/opt/nfs"
    timeout 1 stat -t "$mountpoint" >/dev/null
    if [ $? -ne 0 ]; then
      echo "NFS mount stale. Removing..."
      umount -f -l "$mountpoint"
    else
      echo YES
    fi
    

    脚本2

    #/bin/bash
    mountpoint="/opt/nfs"
    read -t1 < <(stat -t "$mountpoint" 2>&-)
    if [[ -z "$REPLY" ]]; then
      echo "NFS mount stale. Removing..."
      umount -f -l "$mountpoint"
    else
      echo YES
    fi
    

    相关文章

      网友评论

          本文标题:检测NFS状态脚本

          本文链接:https://www.haomeiwen.com/subject/xvsnwhtx.html