check_zypper.sh 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #!/bin/bash
  2. #############################################################################
  3. # (c) 2011 Sven Velt <sven@velt.de #
  4. # and team(ix) GmbH, Nuernberg, Germany #
  5. # (c) 2016 by Sven Velt, Germany #
  6. # sven-mymonplugins@velt.biz #
  7. # #
  8. # This file is part of "velt.biz - My Monitoring Plugins" #
  9. # a fork of "team(ix) Monitoring Plugins" in 2015 #
  10. # URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
  11. # #
  12. # All rights reserved. #
  13. # Redistribution and use in source and binary forms, with or without #
  14. # modification, are permitted provided that the following conditions #
  15. # are met: #
  16. # 1. Redistributions of source code must retain the above copyright #
  17. # notice, this list of conditions and the following disclaimer. #
  18. # 2. Redistributions in binary form must reproduce the above copyright #
  19. # notice, this list of conditions and the following disclaimer in the #
  20. # documentation and/or other materials provided with the distribution. #
  21. # 3. The name of the copyright owner may not be used to endorse or #
  22. # promote products derived from this software without specific prior #
  23. # written permission. #
  24. # #
  25. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR #
  26. # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED #
  27. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE #
  28. # DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, #
  29. # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES #
  30. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR #
  31. # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) #
  32. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, #
  33. # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING #
  34. # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE #
  35. # POSSIBILITY OF SUCH DAMAGE. #
  36. #############################################################################
  37. # Works on:
  38. # - SLES 11
  39. # Does NOT work on:
  40. # -
  41. # From "/etc/sudoers" / "visudo":
  42. # nagios ALL = NOPASSWD: /usr/bin/zypper ref,/usr/bin/zypper -q pchk
  43. #
  44. if [ ! -x /usr/bin/zypper ] ; then
  45. echo 'Zypper CRITICAL - Zypper not found!'
  46. exit 2
  47. fi
  48. # Refresh repositories
  49. sudo /usr/bin/zypper ref >/dev/null 2>&1
  50. zypper_out=$(sudo LANG=C /usr/bin/zypper -q pchk)
  51. if ( echo "${zypper_out}" | grep -q "needed" ) ; then
  52. output=$(echo ${zypper_out} | cut -d "." -f 7)
  53. patches=$(echo ${output} | cut -d " " -f1)
  54. if [ ${patches} -gt 0 ] ; then
  55. secpatches=$(echo ${output} | cut -d "(" -f2|cut -d " " -f1)
  56. if [ -n "${secpatches}" ]; then
  57. if [ ${secpatches} -gt 0 ] ; then
  58. echo "Zypper CRITICAL - ${patches}"
  59. exit 2
  60. fi
  61. echo "Zypper WARNING - ${output}"
  62. exit 1
  63. fi
  64. fi
  65. fi
  66. echo "Zypper OK - No updates available"
  67. exit 0