summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/.gitignore2
-rw-r--r--debian/changelog61
-rw-r--r--debian/compat1
-rw-r--r--debian/control16
-rw-r--r--debian/copyright26
-rwxr-xr-xdebian/rules3
6 files changed, 109 insertions, 0 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..ada30a2
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1,2 @@
+vserver-monitoring*
+files
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6979688
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,61 @@
+vserver-monitoring (2.0-1) unstable; urgency=low
+
+ * version bump
+ * beautify code
+ * add parameter for service name
+ * fix typo
+ * add multi host mode with NSCA-ng compatible output
+ * refactor code to have a sub to handle a single vserver
+ * use methods from new VServer.pm
+ * optional limits
+ * add domain switch
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Fri, 14 Feb 2014 04:38:54 +0100
+
+vserver-monitoring (1.6-1) unstable; urgency=low
+
+ * Makefile: install all check_* scripts
+ * bump version
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Thu, 24 Jan 2013 01:42:24 +0100
+
+vserver-monitoring (1.5-1) unstable; urgency=low
+
+ * check_mem: add script
+ * bump version
+ * check_mem: retab
+ * check_mem: better output
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Thu, 24 Jan 2013 00:09:20 +0100
+
+vserver-monitoring (1.4-1) unstable; urgency=low
+
+ * check_load: fix taint mode
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Tue, 22 Jan 2013 22:05:48 +0100
+
+vserver-monitoring (1.3-1) unstable; urgency=low
+
+ * install with /usr/ prefix into vserver subdir
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Tue, 22 Jan 2013 18:19:06 +0100
+
+vserver-monitoring (1.2-2) unstable; urgency=low
+
+ * add debian/.gitignore
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Mon, 21 Jan 2013 22:28:32 +0100
+
+vserver-monitoring (1.2-1) unstable; urgency=low
+
+ * add Makefile
+ * bump version
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Mon, 21 Jan 2013 22:14:38 +0100
+
+vserver-monitoring (1.1-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Mon, 21 Jan 2013 22:01:44 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..41d3d5a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: vserver-monitoring
+Section: unknown
+Priority: extra
+Maintainer: Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+Build-Depends: debhelper (>= 7.0.50~)
+Standards-Version: 3.9.1
+Homepage: http://git.spline.inf.fu-berlin.de/vserver-monitoring/
+Vcs-Git: git://git.spline.inf.fu-berlin.de/vserver-monitoring
+
+Package: nagios-plugins-vserver
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, libvserver-perl
+Description: nagios scripts for monitoring vserver
+ With this script you could monitor the load of running vserver
+ guests with nagios. The output is compatible with the default
+ check_load nagios plugin.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8901bb4
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,26 @@
+This work was packaged for Debian by:
+
+ Alexander Sulfrian <alex@spline.inf.fu-berlin.de> on Mon, 21 Jan 2013 22:01:44 +0100
+
+It was downloaded from:
+
+ http://git.spline.inf.fu-berlin.de/vserver-monitoring/
+
+Upstream Author(s):
+
+ Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+
+Copyright:
+
+ Copyright (C) 2013 Alexander Sulfrian
+
+License:
+
+ as-is
+
+The Debian packaging is:
+
+ Copyright (C) 2013 Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+
+and is licensed under the GPL version 3,
+see "/usr/share/common-licenses/GPL-3".
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..cbe925d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+%:
+ dh $@