Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'plug-in'

1606656 - check_nbu_pool: bash nagios netbackup plug-in icinga
  1. #!/bin/bash
  2.  
  3. # Based on a script from "Jurry"
  4. # -> http://jurrys.blogspot.com/2008/09/nagios-plug-in-for-netbackup-scartch.html
  5.  
  6. # Changes by Alexander Skwar <alexander@skwar.name>:
  7. # 2009-10-09:
  8. # - Allow the user to specify the name of the pool which is to be checked
  9.  
1606560 - check_nbu_pool: bash nagios netbackup plug-in icinga
  1. #!/bin/bash
  2.  
  3. # Based on a script from "Jurry"
  4. # -> http://jurrys.blogspot.com/2008/09/nagios-plug-in-for-netbackup-scartch.html
  5.  
  6. # Changes by Alexander Skwar <alexander@skwar.name>:
  7. # 2009-10-09:
  8. # - Allow the user to specify the name of the pool which is to be checked
  9.  
1606525 - check_nbu_pool: bash nagios netbackup plug-in icinga
  1. #!/bin/bash
  2.  
  3. WARN_COUNT=$1
  4. CRIT_COUNT=$2
  5.  
  6.  
  7. SCRATCH_TMP=`/usr/openv/volmgr/bin/vmquery -b -pn Scratch_pool | wc -l`
  8. SCRATCH_COUNT=$[$SCRATCH_TMP - 3]
  9.  
worth-right