From 36b461f709d2f3a7b83353f0beb8e7cfd08558f3 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Thu, 12 Feb 2015 00:44:37 +0100 Subject: [PATCH] Initial release. (Closes: #777732) --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 30 ++++++++++++++++++++++++++++++ debian/copyright | 24 ++++++++++++++++++++++++ debian/docs | 1 + debian/gbp.conf | 8 ++++++++ debian/install | 1 + debian/rules | 10 ++++++++++ debian/source/format | 1 + 9 files changed, 81 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/gbp.conf create mode 100644 debian/install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..905dbd1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +nagios-check-xmppng (0.1.2-1) UNRELEASED; urgency=medium + + * Initial release. (Closes: #777732) + + -- Jan Dittberner Wed, 11 Feb 2015 23:46:46 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..912bdc9 --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +Source: nagios-check-xmppng +Section: net +Priority: extra +Maintainer: Jan Dittberner +Homepage: https://exchange.icinga.org/jandd/check_xmppng +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.6 +Vcs-Browser: https://git.dittberner.info/?p=check_xmpp.git +Vcs-Git: https://git.dittberner.info/check_xmpp.git -b debian + +Package: nagios-check-xmppng +Architecture: all +Depends: python3 (>= 3.4), + python3-defusedxml (>= 0.4.1), + python3-nagiosplugin (>= 1.2.2), + ${misc:Depends} +Suggests: icinga | icinga2 | nagios3 +Description: monitoring plugin to check XMPP servers + a nagios compatible check plugin for XMPP servers implementing the XMPP + protocol as specified in RFC 6120. + . + The plugin provides the following features: + . + - check client to server (C2S) as well as server to server (S2S) ports + - check XMPP servers on IPv6 and IPv4 addresses + - support STARTTLS as specified in RFC 6120 section 5. + - check the validity of the server certificate presented by the XMPP server + . + The plugin has been implemented because of insufficiencies in the existing + check_ssl_cert and check_xmpp plugins. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..20c77df --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: check_xmppng +Upstream-Contact: Jan Dittberner +Source: https://git.dittberner.info/?p=check_xmpp.git + +Files: * +Copyright: 2015 Jan Dittberner +License: GPL-3 + This program 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 3 of the License, or + (at your option) any later version. + . + This program 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 program. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..1d04350 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,8 @@ +[DEFAULT] +debian-branch = debian +upstream-branch = master +upstream-tag = %(version)s +no-create-orig = True + +[import-orig] +pristine-tar = False diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..32fb4ec --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +check_xmppng /usr/lib/nagios/plugins/ diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..774bf87 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +#export DH_VERBOSE=1 + +override_dh_installchangelogs: + dh_installchangelogs changes.md + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)