Browse Source

Update URLs and copyright

Sven Velt 8 years ago
parent
commit
03e09061a5
9 changed files with 93 additions and 27 deletions
  1. 8 4
      check_apaches.py
  2. 2 1
      check_collectd.py
  3. 44 3
      check_iface-dns.py
  4. 2 1
      check_livestatus_latency.py
  5. 8 4
      check_naf.py
  6. 8 4
      check_nagiostats.py
  7. 8 4
      check_netconnections.py
  8. 8 4
      check_sensors.py
  9. 5 2
      check_zypper.sh

+ 8 - 4
check_apaches.py

@@ -4,9 +4,12 @@
 #####################################################################
 # (c) 2007-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
 #                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
 #                                                                   #
-# This file is part of "team(ix) Monitoring Plugins"                #
-# URL: http://oss.teamix.org/projects/monitoringplugins/            #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
 #                                                                   #
 # This file is free software: you can redistribute it and/or modify #
 # it under the terms of the GNU General Public License as published #
@@ -37,9 +40,10 @@ except ImportError:
 	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
 	print 'without "monitoringplugin.py"?\n'
 	print 'Please go back to'
-	print 'http://oss.teamix.org/projects/monitoringplugins/ and download it,'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a hole archive at http://oss.teamix.org/projects/monitoringplugins/files\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 2 - 1
check_collectd.py

@@ -42,7 +42,8 @@ except ImportError:
 	print 'Please go back to'
 	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 44 - 3
check_iface-dns.py

@@ -1,10 +1,51 @@
-#!/usr/bin/python
-
-from monitoringplugin import MonitoringPlugin
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+
+#####################################################################
+# (c) 2006-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
+#                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
+#                                                                   #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
+#                                                                   #
+# This file is free software: you can redistribute it and/or modify #
+# it under the terms of the GNU General Public License as published #
+# by the Free Software Foundation, either version 2 of the License, #
+# or (at your option) any later version.                            #
+#                                                                   #
+# This file is distributed in the hope that it will be useful, but  #
+# WITHOUT ANY WARRANTY; without even the implied warranty of        #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the      #
+# GNU General Public License for more details.                      #
+#                                                                   #
+# You should have received a copy of the GNU General Public License #
+# along with this file. If not, see <http://www.gnu.org/licenses/>. #
+#####################################################################
 
 import fcntl
 import socket
 import struct
+import sys
+
+try:
+	from monitoringplugin import SNMPMonitoringPlugin
+except ImportError:
+	print '=========================='
+	print 'AIKS! Python import error!'
+	print '==========================\n'
+	print 'Could not find "monitoringplugin.py"!\n'
+	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
+	print 'without "monitoringplugin.py"?\n'
+	print 'Please go back to'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
+	print 'or even better:'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
+	sys.exit(127)
+
 
 def get_ipv4_address(iface):
 	sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

+ 2 - 1
check_livestatus_latency.py

@@ -40,7 +40,8 @@ except ImportError:
 	print 'Please go back to'
 	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 8 - 4
check_naf.py

@@ -4,9 +4,12 @@
 #####################################################################
 # (c) 2006-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
 #                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
 #                                                                   #
-# This file is part of "team(ix) Monitoring Plugins"                #
-# URL: http://oss.teamix.org/projects/monitoringplugins/            #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
 #                                                                   #
 # This file is free software: you can redistribute it and/or modify #
 # it under the terms of the GNU General Public License as published #
@@ -35,9 +38,10 @@ except ImportError:
 	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
 	print 'without "monitoringplugin.py"?\n'
 	print 'Please go back to'
-	print 'http://oss.teamix.org/projects/monitoringplugins/ and download it,'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a hole archive at http://oss.teamix.org/projects/monitoringplugins/files\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 8 - 4
check_nagiostats.py

@@ -4,9 +4,12 @@
 #####################################################################
 # (c) 2005-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
 #                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
 #                                                                   #
-# This file is part of "team(ix) Monitoring Plugins"                #
-# URL: http://oss.teamix.org/projects/monitoringplugins/            #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
 #                                                                   #
 # This file is free software: you can redistribute it and/or modify #
 # it under the terms of the GNU General Public License as published #
@@ -37,9 +40,10 @@ except ImportError:
 	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
 	print 'without "monitoringplugin.py"?\n'
 	print 'Please go back to'
-	print 'http://oss.teamix.org/projects/monitoringplugins/ and download it,'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a hole archive at http://oss.teamix.org/projects/monitoringplugins/files\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 8 - 4
check_netconnections.py

@@ -4,9 +4,12 @@
 #####################################################################
 # (c) 2010-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
 #                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
 #                                                                   #
-# This file is part of "team(ix) Monitoring Plugins"                #
-# URL: http://oss.teamix.org/projects/monitoringplugins/            #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
 #                                                                   #
 # This file is free software: you can redistribute it and/or modify #
 # it under the terms of the GNU General Public License as published #
@@ -36,9 +39,10 @@ except ImportError:
 	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
 	print 'without "monitoringplugin.py"?\n'
 	print 'Please go back to'
-	print 'http://oss.teamix.org/projects/monitoringplugins/ and download it,'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a hole archive at http://oss.teamix.org/projects/monitoringplugins/files\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 8 - 4
check_sensors.py

@@ -4,9 +4,12 @@
 #####################################################################
 # (c) 2010-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany  #
 #                  sv@teamix.net                                    #
+# (c) 2016 by Sven Velt, Germany                                    #
+#             sven-mymonplugins@velt.biz                            #
 #                                                                   #
-# This file is part of "team(ix) Monitoring Plugins"                #
-# URL: http://oss.teamix.org/projects/monitoringplugins/            #
+# This file is part of "velt.biz - My Monitoring Plugins"           #
+# a fork of "team(ix) Monitoring Plugins" in 2015                   #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                 #
 #                                                                   #
 # This file is free software: you can redistribute it and/or modify #
 # it under the terms of the GNU General Public License as published #
@@ -38,9 +41,10 @@ except ImportError:
 	print 'Did you download "%s"' % os.path.basename(sys.argv[0])
 	print 'without "monitoringplugin.py"?\n'
 	print 'Please go back to'
-	print 'http://oss.teamix.org/projects/monitoringplugins/ and download it,'
+	print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
 	print 'or even better:'
-	print 'get a hole archive at http://oss.teamix.org/projects/monitoringplugins/files\n'
+	print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
+	print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
 	sys.exit(127)
 
 

+ 5 - 2
check_zypper.sh

@@ -3,9 +3,12 @@
 #############################################################################
 # (c) 2011 Sven Velt <sven@velt.de                                          #
 #          and team(ix) GmbH, Nuernberg, Germany                            #
+# (c) 2016 by Sven Velt, Germany                                            #
+#             sven-mymonplugins@velt.biz                                    #
 #                                                                           #
-# This file is part of "team(ix) Monitoring Plugins"                        #
-# URL: http://oss.teamix.org/projects/monitoringplugins/                    #
+# This file is part of "velt.biz - My Monitoring Plugins"                   #
+# a fork of "team(ix) Monitoring Plugins" in 2015                           #
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/                         #
 #                                                                           #
 # All rights reserved.                                                      #
 # Redistribution and use in source and binary forms, with or without        #