debian/0000775000000000000000000000000012115453470007172 5ustar debian/rules0000775000000000000000000000015512115453463010255 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_build: docbook2x-man debian/nagcon.1.docbook dh_auto_build debian/watch0000664000000000000000000000007412115453027010222 0ustar version=3 http://www.vanheusden.com/nagcon/nagcon-(.*)\.tgz debian/changelog0000664000000000000000000000260612115453270011046 0ustar nagcon (0.0.30-0ubuntu2) raring; urgency=low * debian/changelog: Fix trailer line. * debian/control: - Update Maintainer address. - Bump debhelper Build-Depends to (>= 7.0.50~). - Remove dpatch from Build-Depends. - Bump Standards-Version to 3.9.4. * debian/copyright: Fix symlink to GPL license. * debian/patches/*: Convert to quilt. * debian/rules: Convert to dh sequencer. * debian/source/format: Indicate 3.0 (quilt) source format. * debian/watch: Remove helper template. -- Logan Rosen Tue, 05 Mar 2013 15:24:13 -0500 nagcon (0.0.30-0ubuntu1) jaunty; urgency=low * New upstream release (LP: #303449) -- Nathan Handler Sat, 29 Nov 2008 08:18:55 -0600 nagcon (0.0.26-0ubuntu1) intrepid; urgency=low * New upstream release (LP: #237055) * Added Homepage to control file, removed it from extended description * Changed Maintainer to MOTU, kept original maintainer (LP: #230350) * debian/rules : - added a check against previous binary instead of ignore in clean -- Nicolas Van Wambeke Tue, 19 Jun 2008 19:12:27 +0200 nagcon (0.0.18-0ubuntu1) edgy; urgency=low * Initial release * debian/patches/01_makefile.dpatch: change installation path * debian/patches/02_status_file.dpatch: change status file location -- Lionel Porcheron Mon, 28 Aug 2006 21:57:52 +0200 debian/nagcon.1.docbook0000664000000000000000000001107412115451765012150 0ustar Lionel Porcheron lionel@alveonet.org 2006 Lionel Porcheron 2006-08-01 nagcon 1 nagcon nagcon is a console application interfacing to nagios nagcon DESCRIPTION This manual page documents briefly the nagcon command. nagcon is a console application to get status of services monitored by nagios OPTIONS Generic options: Show help about options what file to monitor (usually: /var/log/nagios/status.log) connect to a host for retrieving the status.log information check interval (in seconds) list also the services for hosts that are down also display services for which notify has been switched off also display problems that already have been acknowledged turn off grouping by status change sort order suppress services with ok status status.log-file is in Nagios 1.0 format status.log-file is in Nagios 2.0 format set width of hostname column set width of service description column display version AUTHOR This manual page was written by Lionel Porcheron lionel@alveonet.org for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. debian/compat0000664000000000000000000000000212115451765010375 0ustar 5 debian/copyright0000664000000000000000000000204012115453067011123 0ustar This package was debianized by Lionel Porcheron on Thu, 06 Jul 2006 16:52:45 +0200 It was downloaded from http://www.vanheusden.com/nagcon/ Copyright (c) 2006 Folkert van Heusden License: 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/source/0000775000000000000000000000000012115453470010472 5ustar debian/source/format0000664000000000000000000000001412115452024011672 0ustar 3.0 (quilt) debian/nagcon.manpages0000664000000000000000000000001112115451765012151 0ustar nagcon.1 debian/control0000664000000000000000000000107712115452150010574 0ustar Source: nagcon Section: net Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Lionel Porcheron Build-Depends: debhelper (>= 7.0.50~), libncurses5-dev, docbook2x Standards-Version: 3.9.4 Homepage: http://www.vanheusden.com/nagcon/ Package: nagcon Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: console application interfacing to Nagios Nagcon is a console application interfacing to Nagios which gives you an overview of all services with troubled services. debian/docs0000664000000000000000000000001312115451765010044 0ustar readme.txt debian/dirs0000664000000000000000000000001012115451765010052 0ustar usr/bin debian/patches/0000775000000000000000000000000012115453470010621 5ustar debian/patches/series0000664000000000000000000000004712115452024012031 0ustar 01_makefile.patch 02_status_file.patch debian/patches/02_status_file.patch0000664000000000000000000000151112115452025014456 0ustar Author: Description: Status file location --- a/nc.cpp +++ b/nc.cpp @@ -178,7 +178,7 @@ printf("-f file what file to monitor (usuallly:\n"); printf("-F host:port connect to a host for retrieving the status.log information\n"); - printf(" /usr/local/nagios/var/status.log, look for status_file in\n"); + printf(" /var/log/nagios/status.log, look for status_file in\n"); printf(" the nagios.cfg file\n"); printf("-i x check interval (in seconds)\n"); printf("-a list also the services for hosts that are down\n"); @@ -210,7 +210,7 @@ WINDOW *win; int sw; - char *status_log = "/usr/local/nagios/var/status.log"; + char *status_log = "/var/log/nagios/status.log"; int interval = 5; char list_all_problems = 0; char always_notify = 0; debian/patches/01_makefile.patch0000664000000000000000000000043512115452024013713 0ustar Author: Description: Makefile patch --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ $(CC) -Wall -W $(OBJS) $(LDFLAGS) -o nagcon install: nagcon - cp nagcon /usr/local/bin + cp nagcon $(DESTDIR)/usr/bin clean: rm -f $(OBJS) nagcon core *.da *.gcov *.bb*