Initial release. (Closes: #777732)
This commit is contained in:
parent
7b1d482043
commit
36b461f709
9 changed files with 81 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
nagios-check-xmppng (0.1.2-1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Initial release. (Closes: #777732)
|
||||||
|
|
||||||
|
-- Jan Dittberner <jandd@debian.org> Wed, 11 Feb 2015 23:46:46 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
9
|
30
debian/control
vendored
Normal file
30
debian/control
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
Source: nagios-check-xmppng
|
||||||
|
Section: net
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Jan Dittberner <jandd@debian.org>
|
||||||
|
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.
|
24
debian/copyright
vendored
Normal file
24
debian/copyright
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: check_xmppng
|
||||||
|
Upstream-Contact: Jan Dittberner <jan@dittberner.info>
|
||||||
|
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 <http://www.gnu.org/licenses/>.
|
||||||
|
.
|
||||||
|
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'.
|
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
README.md
|
8
debian/gbp.conf
vendored
Normal file
8
debian/gbp.conf
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[DEFAULT]
|
||||||
|
debian-branch = debian
|
||||||
|
upstream-branch = master
|
||||||
|
upstream-tag = %(version)s
|
||||||
|
no-create-orig = True
|
||||||
|
|
||||||
|
[import-orig]
|
||||||
|
pristine-tar = False
|
1
debian/install
vendored
Normal file
1
debian/install
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
check_xmppng /usr/lib/nagios/plugins/
|
10
debian/rules
vendored
Executable file
10
debian/rules
vendored
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
override_dh_installchangelogs:
|
||||||
|
dh_installchangelogs changes.md
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
Loading…
Reference in a new issue