You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345 |
- #!/usr/bin/env bash
-
- while read _ _ mount _; do
- read -t1 < <(stat -t "$mount") || echo "$(date) ${mount} timeout $(lsof -b 2>/dev/null | grep "${mount}")";
- done < <(mount -t nfs) >> /var/log/nfs.err
|