Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # zpool list
  2. NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
  3. tank 54.5T 36.0T 18.5T - 35% 66% 1.00x ONLINE -
  4.  
  5. #!/bin/sh
  6. #
  7. STATUS=$(/sbin/zpool list | grep tank | grep ONLINE)
  8. if [ $? -gt 0 ]; then
  9. echo "Problems"
  10. exit 1
  11. else
  12.  
  13. echo all system go!
  14. exit 0
  15.  
  16. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement