debian/0000755000000000000000000000000012257332404007170 5ustar debian/nagvis.lintian-overrides0000644000000000000000000000042512254660644014047 0ustar # ignoring apache2 warning # this is actually not a problem, because the handling is backwards compatible apache2-reverse-dependency-calls-invoke-rc.d postrm apache2-reverse-dependency-calls-wrapper-script postinst a2enmod apache2-reverse-dependency-calls-invoke-rc.d postinst debian/nagvis.dirs0000644000000000000000000000023412254660644011350 0ustar var/cache/nagvis var/cache/nagvis/tmpl/cache var/cache/nagvis/tmpl/compile var/lib/nagvis etc/nagvis/profiles etc/apache2/conf.d/ usr/share/nagvis/defaults debian/source/0000755000000000000000000000000012254660644010477 5ustar debian/source/format0000644000000000000000000000001412254660644011705 0ustar 3.0 (quilt) debian/nagvis.config0000644000000000000000000000021212254660644011650 0ustar #!/bin/sh set -e # Source debconf library. . /usr/share/debconf/confmodule db_input high nagvis/monitoring_system|| true db_go || true debian/nagvis.postinst0000644000000000000000000001734012257330054012270 0ustar #!/bin/sh # postinst script for nagvis # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package if dpkg --compare-versions "$2" lt-nl "1:1.7.9+dfsg1-1~"; then # help by adding a empty file touch /etc/nagvis/apache2.conf # move /etc/apache2/conf.d/nagvis.conf to /etc/nagvis/apache2.conf dpkg-maintscript-helper mv_conffile \ /etc/apache2/conf.d/nagvis.conf /etc/nagvis/apache2.conf "1:1.7.9+dfsg1-1~" nagvis -- "$@" # unregister old file ucf -p /etc/apache2/conf.d/nagvis.conf ucfr -p nagvis /etc/apache2/conf.d/nagvis.conf # delete helper file rm -f /etc/nagvis/apache2.conf.dpkg-new # remove old automap dpkg-maintscript-helper rm_conffile \ /etc/nagvis/automaps/__automap.cfg "1:1.7.9+dfsg1-1~" nagvis -- "$@" rmdir /etc/nagvis/automaps/ 2>/dev/null || true fi setperm() { user="$1" group="$2" mode="$3" file="$4" shift 4 # only do something when no setting exists if ! dpkg-statoverride --list "$file" >/dev/null 2>&1; then chown "$user":"$group" "$file" chmod "$mode" "$file" fi } update_permissions() { setperm www-data www-data 0755 /etc/nagvis setperm www-data www-data 0755 /etc/nagvis/maps setperm www-data www-data 0755 /etc/nagvis/conf.d setperm www-data www-data 0755 /etc/nagvis/profiles setperm www-data www-data 0755 /var/lib/nagvis/userfiles setperm www-data www-data 0755 /var/lib/nagvis/userfiles/images/maps setperm www-data www-data 0755 /var/lib/nagvis/userfiles/images/shapes setperm www-data www-data 0750 /var/cache/nagvis setperm www-data www-data 0750 /var/cache/nagvis/tmpl setperm www-data www-data 0750 /var/cache/nagvis/tmpl/compile setperm www-data www-data 0750 /var/cache/nagvis/tmpl/cache } # migrate userfiles from /var/cache/nagvis to /var/lib/nagvis migrate_userfiles() { from="/var/cache/nagvis/userfiles" to="/var/lib/nagvis/userfiles" for dir in images/maps images/shapes; do if [ -d "$from/$dir" ]; then echo "moving files from $from/$dir to $to/$dir ..." mv "$from/$dir"/* "$to/$dir/" rmdir "$from/$dir" || true fi done test -d "$from/images" && rmdir "$from/images" || true test -d "$from" && rmdir "$from" || true } case "$1" in configure) # Source debconf library. . /usr/share/debconf/confmodule db_get nagvis/monitoring_system MONITORING="$RET" case "$MONITORING" in "icinga"|"nagios"|"shinken") ## Creating Configuration file for Nagvis nagvis_tmp=$(mktemp) cat /usr/share/nagvis/defaults/nagvis.ini.php-sample | sed \ -e "s#;file_group=\"\"#file_group=\"www-data\"#g" \ -e "s#;file_mode=\"660\"#file_mode=\"660\"#g" \ -e "s#;base=\"/usr/local/nagvis/\"#base=\"/usr/share/nagvis/\"#" \ -e "s#;htmlbase=\"/nagvis\"#htmlbase=\"/nagvis\"#" \ -e "s#\[rotation_demo\]#;\[rotation_demo\]#" \ -e "s#interval=15#;interval=15#" \ -e "s#maps=\"\(.*\)\"#;maps=\"\1\"#" \ > "$nagvis_tmp" case "$MONITORING" in "icinga") sed -i "$nagvis_tmp" \ -e "s#;htmlcgi=\"/nagios/cgi-bin\"#htmlcgi=\"/icinga/cgi-bin\"#" \ -e "s#;socket=\"unix:/usr/local/nagios/var/rw/live\"#socket=\"unix:/var/lib/icinga/rw/live\"#" ;; "nagios") sed -i "$nagvis_tmp" \ -e "s#;htmlcgi=\"/nagios/cgi-bin\"#htmlcgi=\"/nagios/cgi-bin\"#" \ -e "s#;socket=\"unix:/usr/local/nagios/var/rw/live\"#socket=\"unix:/var/lib/nagios3/rw/live\"#" ;; "shinken") sed -i "$nagvis_tmp" \ -e "s#;htmlcgi=\"/nagios/cgi-bin\"#htmlcgi=\"/nagios/cgi-bin\"#" \ -e "s#;socket=\"unix:/usr/local/nagios/var/rw/live\"#socket=\"tcp:localhost:50000\"#" ;; esac chgrp www-data "$nagvis_tmp" chmod g+rw "$nagvis_tmp" ucf --debconf-ok "$nagvis_tmp" /etc/nagvis/nagvis.ini.php ucfr nagvis /etc/nagvis/nagvis.ini.php rm -f "$nagvis_tmp" ## Creating Configuration snipplet for Apache apache_tmp=$(mktemp) sed -e "s#@NAGVIS_PATH@#/usr/share/nagvis/share/#g" \ -e "s#@NAGVIS_WEB@#/nagvis#g" \ < /usr/share/nagvis/defaults/apache2-nagvis.conf-sample \ > "$apache_tmp" case "$MONITORING" in "icinga") sed -i "$apache_tmp" \ -e "s#@NAGIOS_PATH@/etc#/etc/icinga#g" ;; "nagios") sed -i "$apache_tmp" \ -e "s#@NAGIOS_PATH@/etc#/etc/nagios3#g" ;; "shinken") sed -i "$apache_tmp" \ -e "s#@NAGIOS_PATH@/etc#/etc/shinken#g" ;; esac chmod go+r "$apache_tmp" ucf --debconf-ok "$apache_tmp" /etc/nagvis/apache2.conf ucfr nagvis /etc/nagvis/apache2.conf rm -f "$apache_tmp" ;; "other") # nothing to be done for others ;; esac # enable apache when file exists and we are on autoconfigure if [ -f /etc/nagvis/apache2.conf ] && ( [ "$MONITORING" = "nagios" ] || [ "$MONITORING" = "icinga" ] || [ "$MONITORING" = "shinken" ] ); then echo "enabling Apache2 config..." COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true) # NEW method for Apache >= 2.4 if [ -e /usr/share/apache2/apache2-maintscript-helper ]; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke enmod rewrite apache2_invoke enconf nagvis # remove OLD Apache 2.2 link [ -L /etc/apache2/conf.d/nagvis.conf ] && rm /etc/apache2/conf.d/nagvis.conf # OLD methods for Apache < 2.4 elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then # enable mod rewrite [ -f /etc/apache2/mods-enabled/rewrite.load ] || a2enmod rewrite # create symlink if not existing [ -f /etc/apache2/conf.d/nagvis.conf ] || ln -vs ../../nagvis/apache2.conf /etc/apache2/conf.d/nagvis.conf # reload webserver [ -x $(which invoke-rc.d) ] && invoke-rc.d apache2 reload fi fi update_permissions migrate_userfiles ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/changelog0000644000000000000000000003057512257332314011054 0ustar nagvis (1:1.7.10+dfsg1-2) unstable; urgency=low [ Mathieu Parent ] * [fca29f3] Refactor monitoring configuration * [3253395] Shinken support (Closes: #733139) [ Markus Frosch ] * [12156c3] Fix Debian watch file for +dfsg1 versions * [91b09f2] Added patch headers to existing patches * [4ee9a4c] Added privary-breach patch for cleaning up possible privacy breaches * [12156c3] Fix Debian watch file for +dfsg1 versions -- Markus Frosch Fri, 27 Dec 2013 18:09:08 +0100 nagvis (1:1.7.10+dfsg1-1) unstable; urgency=medium [ victory ] * [8f99113] [INTL:ja] New Japanese translation (Closes: #692577) [ Markus Frosch ] * [d0b4e11] Depending on php5 instead of libapache2-mod-php5 to allow other PHP implementations. (Closes: #680937) * [61c5f43] Make sure to unregister /etc/apache2/conf.d/nagvis.conf on migration and purge * [09298c9] Moved permissions to postinst, this fixes problems on update (Closes: #719698) * [8f7d748] Moved userfiles to /var/lib/nagvis/userfiles (Closes: #706245) * [618eceb] Updated copyright information and README.source * [e21aafb] Imported Upstream version 1.7.10 * [bdc32e6] DFSG cleaned upstream version 1.7.10+dfsg1 -- Markus Frosch Thu, 19 Dec 2013 22:15:14 +0100 nagvis (1:1.7.9+dfsg1-1~exp1) experimental; urgency=low * Maintainer was switched team internally to Markus Frosch * [95168ff] Imported Upstream version 1.7.9 (Closes: #696235) * [a63479e] DFSG cleaned upstream version 1.7.9+dfsg1 * [cd9367a] Made packaging updates for 1.7.9 * [b403fd4] Moved config file samples/defaults out of docs (Closes: #709956) * [4e45ce0] Implemented Apache 2.4 support, with moving conf file to /etc/nagvis (Closes: #669819) * [0c87a9f] Fixed handling of config file migration, old configs and purge * [5682d4b] Update control, VCS, wrapping and standards version -- Markus Frosch Thu, 12 Dec 2013 21:32:45 +0100 nagvis (1:1.6.6+dfsg.1-3) unstable; urgency=medium * Bump version number to allow smooth upgrades from squeeze-backports (Containing a backport versioned 1:1.6.6+dfsg.1-3~bpo60+1 by mistake) -- Alexander Reichle-Schmehl Mon, 02 Jul 2012 12:46:07 +0200 nagvis (1:1.6.6+dfsg.1-2) unstable; urgency=low [ The "missed upload by 12 minutes" release ] * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #674859 * [Debconf translation updates] * Danish (Joe Hansen). Closes: #675774 * Dutch; (Jeroen Schot). Closes: #675957 * Czech (Michal Simunek). Closes: #675975 * Swedish (Martin Bagge / brother). Closes: #675993 * Danish (Joe Hansen). Closes: #675774 * Russian (Yuri Kozlov). Closes: #676249 * German (Erik Pfannenstein). Closes: #676412 * Portuguese (Pedro Ribeiro). Closes: #676493 * Polish (Michał Kułach). Closes: #676512 * Italian (Beatrice Torracca). Closes: #676525 * French (Jean-Christophe GARNIER). Closes: #676599 * Spanish; (Camaleón). Closes: #676601 * Thanks to Christian Perrier for coordination -- Alexander Reichle-Schmehl Mon, 11 Jun 2012 17:59:57 +0200 nagvis (1:1.6.6+dfsg.1-1) unstable; urgency=low * New upstream release * Adjust versioning scheme to lintian's recommendation * Also adjust debian/watch * Fix debian/watch to not track beta versions -- Alexander Reichle-Schmehl Mon, 11 Jun 2012 17:47:22 +0200 nagvis (1:1.6.4.dfsg.1-2) unstable; urgency=low * Upload to unstable, after no upgrade issues have been reported -- Alexander Reichle-Schmehl Wed, 23 May 2012 12:16:25 +0200 nagvis (1:1.6.4.dfsg.1-1) experimental; urgency=low * Fix nagvis-demos: demo backend definition in /etc/nagvis/conf.d/demo.ini.php of nagvis-demos was ignored, works if shipped added to /etc/nagvis/conf.d/demo_pool.ini.php * Fix "Germish" in package description * Remove unbuildable swf files * Add patches/remove-shell-swf to don't use it * Add get-orig-source target to debian/rules * Add version mangle to watchfile * Bump standards to 3.9.3 (no further changes needed) -- Alexander Reichle-Schmehl Tue, 06 Mar 2012 16:09:19 +0100 nagvis (1:1.6.4-1) experimental; urgency=low * The "gone with the wind" release. * New upstream release (Closes: #659723, #638234) * Rework debian/* move to dh and quilt and (hopefully) easier generell packaging * Update package description: Now also works with Icinga * Change Package dependencies: Drop all ndo and mysql related stuff, as we want to use MK Livestatus * Using MK Livestatus obsoletes the database configuration (Closes: #626456) * That's now the best we can do to make NagVis work out of the box (Closes: #655064) * Update debian/copyright * removed patches/php5.3-deprecated-ereg.dpatch; applied upstream * removed patches/fix-get_class-object.dpatch; no longer needed * removed patches/visibility_magic-set-method.dpatch; no longer needed * Move example maps in separate nagvis-demos package -- Alexander Reichle-Schmehl Mon, 26 Sep 2011 16:29:25 +0200 nagvis (1:1.4.6-2) unstable; urgency=medium * Add myself to uploaders * Acknowledge NMU (Closes: #595313) * Only call ucf on purge if it's available (Closes: #620037) * Set urgency to medium due to RC bug fix * Set Path to gadget files in example configuration (via patches/config.dpatch) (Closes: #611909) * Properly set "Options FollowSymLinks" in the apache configuration (Closes: #632333) * Recommend real ndoutils package instead of the virtual one; no idea why there is a virtual one (Closes: #598953) * Remove previous maintainers from Uploaders. Thanks to Hendrik and Wolfgang for all their work! * Actually install the documentation * Bump standards (no changes needed) * Add recommended targets to debian/rules -- Alexander Reichle-Schmehl Wed, 07 Sep 2011 16:47:25 +0200 nagvis (1:1.4.6-1.1) unstable; urgency=low * Non-maintainer upload. * Only try to configure local database, if ndoutils is run localy (Closes: #595313) -- Alexander Reichle-Schmehl Mon, 11 Oct 2010 13:55:28 +0200 nagvis (1:1.4.6-1) unstable; urgency=low [ Hendrik Frenzel ] * New upstream version (Closes: #533379) * Fixed desctiption (Closes: #560705) * Patched deprecated ereg to preg_match to get them work with php 5.3+ -- Hendrik Frenzel Fri, 19 Feb 2010 12:33:48 +0100 nagvis (1:1.4.5-1) UNRELEASED; urgency=low * (NOT RELEASED YET) New upstream release [ Wolfgang Barth ] * New upstream version * User uploaded maps now in /var/lib/nagvis/images/maps (1.3.1: /etc/maps) to avoid security problems * Cache location nagvis/var ist now /var/cache/nagvis * nagios independent htmlbase /nagvis and corresponding apache.conf linked to /etc/apache2/conf.d * README.backends.Merlin added * all images now in /var/lib/nagvis/images [ Alexander Wirt ] * New upstream version * Add myself to uploaders [ Hendrik Frenzel ] * fixed include path names in nagvis/ajax_handler.php [ Jan Wagner ] * Updating standards version to 3.8.3 - Add README.source -- Wolfgang Barth Sat, 28 Nov 2009 09:23:36 +0100 nagvis (1:1.3.1-3) unstable; urgency=low * adjust pathnames.dpatch to form_handler.php from correct location, thanks Andreas Steinel (Closes: #522296) * add myself to Uploaders * move nagios3 and ndoutils-mysql to Recommends, thanks Josselin Mouette (Closes: #507446) * Bump Standards-Version to 3.8.2, no changes needed * add ${misc:Depends} to Depends * remove execute bit from images -- Jan Wagner Wed, 12 Aug 2009 12:49:27 +0200 nagvis (1:1.3.1-2) unstable; urgency=low * Added --debconf-ok to debian/post{inst,rm} (Closes: 522172) * Copy wui/includes/functions to the right directory (Closes: 522296) -- Hendrik Frenzel Wed, 15 Apr 2009 15:54:05 +0200 nagvis (1:1.3.1-1) unstable; urgency=low * New upstream version with many new features and bugfixes + See http://docs.nagvis.org/1.3/en_US/changelog.html for more info. + added graphviz to Depends -- Hendrik Frenzel Sat, 27 Sep 2008 12:04:13 +0200 nagvis (1:1.2.2-5) unstable; urgency=low * changed from nagios2 to nagios3 support (Closes: 479290) * debian/rules: + used install instead of mkdir or cp * debian/postinst: + added nagvis apache.conf symlink in /etc/apache2/conf.d debian/control: + added libapache2-mod-php5 to Depends * override lintian warning package-contains-empty-directory * debian/copyright + switched to format as proposed on http://wiki.debian.org/Proposals/CopyrightFormat -- Hendrik Frenzel Mon, 19 May 2008 22:51:09 +0200 nagvis (1:1.2.2-4) unstable; urgency=low * debian/changelog: + changed wrong UNRELEASED tag of 1:1.2.2-2 to unstable * nagvis/includes/defines/global.php: + fixed CONST_MAINCFG to point to the right nagvis.ini.php * debian/postinst: + insert commented debconf-common variables if they are empty * nagvis.ini.php-sample: + changed variables base, htmlbase and htmlcgi defaults to fit the current installation paths * change pathnames of included/required files in some nagvis scripts -- Hendrik Frenzel Mon, 17 Mar 2008 14:36:03 +0100 nagvis (1:1.2.2-3) unstable; urgency=low * fixed path of languages -- Hendrik Frenzel Fri, 14 Mar 2008 13:32:53 +0100 nagvis (1:1.2.2-2) unstable; urgency=low * debian/rules + packed missing directories (Closes: #470635: nagvis deb package is not complete) * postinst: + moved debconfs db_stop after ucf is executed -- Hendrik Frenzel Wed, 12 Mar 2008 16:45:22 +0100 nagvis (1:1.2.2-1) unstable; urgency=low * New upstream release with major bugfixes: * Fixed bug with wrong only_hard_states handling * Fixed Logical bug in getObjects(services) * Spaces in format %20 are now allowed in URLs * Service description is now shown in service hover menus * WUI: Fixed map deletion protection when map is linked in another -- Hendrik Frenzel Wed, 13 Feb 2008 10:06:59 +0100 nagvis (1:1.2.1-1) unstable; urgency=low * New upstream version * Update Standards-Version to 3.7.3. * Enabled DM-Upload * Removed old Homepage stanza in debian/control * Removed bashism in debian/rules -- Hendrik Frenzel Thu, 10 Jan 2008 01:09:06 +0100 nagvis (1:1.1-6) unstable; urgency=low * fixed lintian redundant-origin-field warning -- Hendrik Frenzel Mon, 19 Nov 2007 22:44:47 +0100 nagvis (1:1.1-5) unstable; urgency=low * Rebuild because of hardware failures at ries.debian.org after uploading the package. -- Hendrik Frenzel Sun, 18 Nov 2007 21:50:45 +0100 nagvis (1:1.1-4) unstable; urgency=low * Added licenses of nagvis/includes/js/overlib* (Artistic) and wui/includes/js/wz* (LGPL) to debian/copyright * Fixed Vcs-Svn and Vcs-Browser in debian/control -- Hendrik Frenzel Tue, 30 Oct 2007 13:27:11 +0100 nagvis (1:1.1-3) unstable; urgency=low * Fixed symlinks * Removed unnecessary directories -- Hendrik Frenzel Fri, 19 Oct 2007 10:07:13 +0200 nagvis (1:1.1-2) unstable; urgency=low * Symlinked images/maps and images/tempates to the apropriate directory below /etc/nagvis * Added missing debian/postrm -- Hendrik Frenzel Fri, 19 Oct 2007 00:30:05 +0200 nagvis (1:1.1-1) unstable; urgency=low * New upstream release -- Hendrik Frenzel Thu, 06 Sep 2007 19:59:30 +0200 nagvis (1.1rc3-2) unstable; urgency=low * Moved from misc to net section * Removed unneeded stuff in debian/rules * Installed apache.conf with ucf -- Hendrik Frenzel Tue, 28 Aug 2007 21:09:01 +0200 nagvis (1.1rc3-1) unstable; urgency=low * New upstream version -- Hendrik Frenzel Tue, 24 Jul 2007 19:57:44 +0200 nagvis (1.1rc2-1) unstable; urgency=low * Initial release (Closes: #433048: ITP: nagvis -- Visualization addon for Nagios) -- Hendrik Frenzel Sat, 14 Jul 2007 11:37:16 +0200 debian/po/0000755000000000000000000000000012257332404007606 5ustar debian/po/pt.po0000644000000000000000000000456112254660644010606 0ustar # nagvis' debconf messages debconf translations # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the nagvis package. # Pedro Ribeiro , 2012 # msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-05 22:30+0000\n" "Last-Translator: Pedro Ribeiro \n" "Language-Team: Portuguese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "outro" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Suite de monitorização a usar com o NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "O pacote NagVis suporta tanto o Icinga como o Nagios, através do backend " "check-mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Se quiser usar o NagVis com um backend diferente ou uma suite de " "monitorização diferente, escolha \"outro\". Terá que o configurar " "manualmente." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Apagar os dados do NagVis ao purgar a pacote?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "O NagVis cria ficheiros em /var/{cache,lib}/nagvis e /etc/nagvis (por exemplo, " "imagens de fundo e ficheiros de mapa), incluindo uma pequena base de dados " "para autenticação. Se não necessita de nenhum destes ficheiros, podem ser " "removidos agora, ou pode mantê-los e limpá-los manualmente mais tarde." debian/po/de.po0000644000000000000000000000476112254660644010555 0ustar # GERMAN TRANSLATION OF THE NAGVIS PO FILE. # Copyright (C) 2012 Erik Pfannenstein # This file is distributed under the same license as the nagvis package. # Erik Pfannenstein , 2012. # msgid "" msgstr "" "Project-Id-Version: nagvis 1:1.6.4.dfsg.1-3\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-04 18:12+0200\n" "Last-Translator: Erik Pfannenstein \n" "Language-Team: de \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "Andere" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Monitoring-Suite zur Verwendung mit NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Das NagVis-Paket unterstützt sowohl Icinga als auch Nagios und benutzt das " "check-mk-live-Vermittlungs-Backend." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Wenn Sie NagVis mit einem anderen Backend oder einer anderen Monitoring-" "Suite verwenden wollen, wählen Sie bitte »Andere«. Sie werden es allerdings " "per Hand konfigurieren müssen." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "" "NagVis-Daten beim vollständigen Entfernen des Pakets ebenfalls löschen?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis erstellt Dateien in /var/{cache,lib}/nagvis und /etc/nagvis (beispielsweise " "für Hintergründe und Kartendateien), einschließlich einer kleinen Datenbank " "für die Authentifizierung. Wenn Sie keine dieser Dateien benötigen, können " "sie jetzt gelöscht werden. Sie können sie auch behalten und später selbst " "per Hand entfernen." debian/po/ru.po0000644000000000000000000000566512254660644010617 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the nagvis package. # # Yuri Kozlov , 2012. msgid "" msgstr "" "Project-Id-Version: nagvis 1:1.6.4.dfsg.1-3\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-05 21:58+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "другой" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Комплекс мониторинга, используемый с NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Пакет NagVis поддерживает Icinga, а также Nagios с помощью посредника check-" "mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Если вы хотите использовать NagVis с другим посредником или комплексом " "мониторинга, то выберите «другой». В этом случае вам нужно будет выполнить " "настройку самостоятельно." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Удалить данные NagVis при вычистке пакета?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis создаёт файлы в каталоге /var/{cache,lib}/nagvis и /etc/nagvis (такие как " "фоновые изображения и карты), в которых содержится маленькая база " "аутентификационных данных. Если вам ненужны эти файлы, то они могут быть " "удалены прямо сейчас, или вы можете их оставить и удалить позже вручную." debian/po/pl.po0000644000000000000000000000475312254660644010601 0ustar # Translation of nagvis debconf templates to Polish. # Copyright (C) 2012 # This file is distributed under the same license as the nagvis package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-07 15:38+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "inne" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Zestaw oprogramowania monitorującego używany z NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Pakiet NagVis obsługuje Icinga oraz Nagios przy użyciu backendu " "pośredniczącego check-mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Aby użyć NagVis z innym backendem lub innym oprogramowaniem monitorującym, " "proszę wybrać \"inne\". Konieczna będzie wówczas ręczna konfiguracja." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Usunąć dane NagVis przy czyszczeniu pakietu?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis tworzy pliki w /var/{cache,lib}/nagvis i /etc/nagvis (np. pliki tła i pliki " "map), także małą bazę danych do uwierzytelniania. Jeśli pliki te nie są " "potrzebne, mogą zostać usunięte; można również wybrać opcję zachowania ich i " "ręcznego usunięcia później." debian/po/nl.po0000644000000000000000000000467412254660644010601 0ustar # Dutch translation of nagvis debconf templates. # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the nagvis package. # Jeroen Schot , 2012. # msgid "" msgstr "" "Project-Id-Version: nagvis 1:1.6.4.dfsg.1-3\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-04 16:47+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "anders" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Welk bewakingspakket gebruikt u met NagVis?" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Het NagVis-pakket ondersteunt zowel Icinga als Nagios, met behulp van het " "bemiddelings-backend check-mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Als u NagVis wilt gebruiken met een ander backend of met een ander " "bewakingspakket, kies dan \"anders\". Deze zal u handmatig moeten instellen." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Verwijder gegevens van NagVis bij het wissen ('purge') van het pakket?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis maakt bestanden aan in /var/{cache,lib}/nagvis en /etc/nagvis (bijvoorbeeld " "achtergrondafbeeldingen en map-bestanden), inclusief een kleine database " "voor authenticatie. Als u deze bestanden niet nodig heeft kunnen ze nu " "worden verwijderd, of u kunt ze nu bewaren en later zelf met de hand " "opruimen." debian/po/da.po0000644000000000000000000000453112254660644010544 0ustar # Danish translation nagvis. # Copyright (C) 2012 nagvis & nedenstående oversættere. # This file is distributed under the same license as the nagvis package. # Joe Hansen , 2012. # msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-05 19:21+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "anden" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Overvågningsprogrampakke brugt med NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Pakken NagVis understøtter Icinga samt Nagios, med brug af check-mk-live " "broker-motoren." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Hvis du ønsker at bruge NagVis med en anden motor eller en anden " "overvågningsprogrampakke, så vælg venligst »anden«. Du skal konfigurere den " "manuelt." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Slet NagVis-data når pakken afinstalleres?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis opretter filer i /var/{cache,lib}/nagvis og /etc/nagvis (for eksempel " "baggrundsbilleder og kortfiler), inklusiv en lille database for godkendelse. " "Hvis du ikke har brug for nogle af disse filer, så kan de fjernes nu, eller " "måske ønsker du at beholde dem og rydde op manuelt senere." debian/po/sv.po0000644000000000000000000000463412254660644010614 0ustar # Translation of nagvis debconf template to Swedish # Copyright (C) 2012 Martin Bagge # This file is distributed under the same license as the nagvis package. # # Martin Bagge , 2012 msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-04 21:55+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "annan" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Övervakningssvit som används med NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "NagVis-paketet har stöd för Icinga så väl sm Nagios, genom att använda " "bakdelen check-mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Vill du använda NagVis med en annan bakdel eller en annan övervakningssvit " "vänligen välj då \"annan\". Inställningarna ska då göras manuellt." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Ska NagVis data tas bort när paktet tas bort?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis skapar filer i /var/{cache,lib}/nagvis och /etc/nagvis (exempelvis " "bakgrundsbilder och datafiler), bland annat en liten databas för " "autentisering. Om du inte behöver dessa filer så kan de tas bort nu om du " "inte vill behålla dem och ta bort de manuellt senare." debian/po/es.po0000644000000000000000000000617012254660644010570 0ustar # nagvis po-debconf translation to Spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the nagvis package. # # Changes: # - Initial translation # Camaleón , 2012 # # - Updates # # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: nagvis 1:1.6.4.dfsg.1-3\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-07 22:05+0200\n" "Last-Translator: Camaleón \n" "Language-Team: Debian Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "otro" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Componente de monitorización para NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "El paquete NagVis puede trabajar con Icinga y con Nagios utilizando el motor " "«check-mk-live»." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Si prefiere utilizar NagVis con un motor o componente de monitorización " "distinto, seleccione «otro». Tendrá que configurarlo manualmente." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "¿Desea eliminar los datos de NagVis al purgar el paquete?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis genera archivos en «/var/{cache,lib}/nagvis» y en «/etc/nagvis» (p. ej., " "imágenes de fondo y archivos de mapas), así como una pequeña base de datos " "para la autentificación. Si no necesita mantener estos archivos puede " "eliminarlos ahora o quizá prefiera mantenerlos y eliminarlos manualmente más " "adelante." debian/po/POTFILES.in0000644000000000000000000000005312254660644011370 0ustar [type: gettext/rfc822deb] nagvis.templates debian/po/it.po0000644000000000000000000000471412254660644010577 0ustar # Italian translation of nagvis debconf messages. # Copyright (C) 2012, nagvis package copyright holder # This file is distributed under the same license as the nagvis package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-04 20:30+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "altro" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Suite di monitoraggio usata con NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Il pacchetto NagVis supporta Icinga così come Nagios, usando il backend " "broker check-mk-live." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Se si desidera usare NagVis con un backend diverso o una suite di " "monitoraggio diversa, scegliere \"altro\". Sarà necessario configurarli " "manualmente." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Cancellare i dati NagVis quando il pacchetto viene eliminato?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis crea file in /var/{cache,lib}/nagvis e /etc/nagvis (ad esempio immagini di " "sfondo e file mappa), incluso un piccolo database per l'autenticazione. Se " "nessuno di questi file è necessario possono essere rimossi adesso, oppure si " "può tenerli e ripulire a mano successivamente." debian/po/cs.po0000644000000000000000000000465312254660644010572 0ustar # Czech PO debconf template translation of nagvis. # Copyright (C) 2012 Michal Simunek # This file is distributed under the same license as the nagvis package. # Michal Simunek , 2012. # msgid "" msgstr "" "Project-Id-Version: nagvis 1:1.6.4.dfsg.1-3\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-04 18:31+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "jiný" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Monitorovací sada používaná s NagVis:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Balíček NagVis podporuje pomocí zprostředkovatelského backendu check-mk-live " "jak Icinga, tak i Nagios." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Budete-li chtít použít NagVis s jiným backendem či jinou monitorovací sadou, " "zvolte prosím \"jiný\". Nastavit jej budete muset ručně." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Smazat při odstraňování balíčku data pro NagVis?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis ve /var/{cache,lib}/nagvis a /etc/nagvis vytváří soubory (například pro " "obrázky na pozadí a soubory s mapami), včetně malé databáze pro ověřování. " "Pokud žádný z těchto souborů nepotřebujete, lze je nyní odstranit, nebo je " "můžete ponechat a odstranit je později ručně." debian/po/ja.po0000644000000000000000000000503412254660644010551 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # victory , 2012. # msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-16 20:45+0000\n" "PO-Revision-Date: 2012-06-17 05:45+0900\n" "Last-Translator: victory \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "その他" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "NagVis で使う監視ツール群:" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "NagVis パッケージは check-mk-live ブローカーバックエンドを使うことにより、" "Nagios 同様に Icinga もサポートします。" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "NagVis で別のバックエンドあるいは別の監視ツール群を使いたい場合は「その他」を" "選択してください。これは恐らく手作業で設定する必要があります。" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "パッケージの完全削除時に NagVis のデータを削除しますか?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis は /var/{cache,lib}/nagvis と /etc/nagvis (例えば背景画像やマップファイル) に" "認証用の小さなデータベースも含め、ファイルを作成します。こういったファイルが" "一切不要な場合ここで削除することができますが、残しておいて後で手作業で整理する" "こともできます。" debian/po/templates.pot0000644000000000000000000000325212254660644012341 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2013-12-19 21:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for " "instance background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" debian/po/fr.po0000644000000000000000000000520512254660644010566 0ustar # French translation for nagvis debconf templates # Copyright (C) 2012 Debian French translation team # This file is distributed under the same license as the nagvis package. # # Translators: # Jean-Christophe GARNIER , 2012 msgid "" msgstr "" "Project-Id-Version: nagvis\n" "Report-Msgid-Bugs-To: nagvis@packages.debian.org\n" "POT-Creation-Date: 2012-06-03 19:19+0200\n" "PO-Revision-Date: 2012-06-03 21:27+0100\n" "Last-Translator: Jean-Christophe GARNIER \n" "Language-Team: French \n" "Language: Fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" #. Type: select #. Choices #: ../nagvis.templates:2001 msgid "other" msgstr "Autre" #. Type: select #. Description #: ../nagvis.templates:2002 msgid "Monitoring suite used with NagVis:" msgstr "Interface de supervision utilisée avec NagVis : " #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "The NagVis package supports Icinga as well as Nagios, using the check-mk-" "live broker backend." msgstr "" "Le paquet NagVis gère aussi bien Icinga que Nagios, en utilisant l'interface " "« chek-mk-live »." #. Type: select #. Description #: ../nagvis.templates:2002 msgid "" "If you would like to use NagVis with a different backend or a different " "monitoring suite, please choose \"other\". You'll have to configure it " "manually." msgstr "" "Si vous souhaitez utiliser Nagvis avec une autre interface de configuration " "ou un autre logiciel de supervision, veuillez choisir « Autre ». Vous devrez " "alors configurer NagVis vous-même." #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "Delete NagVis data when purging the package?" msgstr "Faut-il effacer les données de NagVis lors de la purge du paquet ?" #. Type: boolean #. Description #: ../nagvis.templates:3001 msgid "" "NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance " "background images and map files), including a small database for " "authentification. If you don't need any of these files, they can be removed " "now, or you may want to keep them and clean up by hand later." msgstr "" "NagVis crée des fichiers de données dans /var/{cache,lib}/nagvis et /etc/nagvis " "(pour les images d'arrière-plan et les cartes en cours), y compris une " "petite base de données pour l'authentification. Si vous n'avez pas besoin de " "ces fichiers, ils peuvent être effacés maintenant ou vous pouvez les " "conserver et les supprimer manuellement plus tard." debian/nagvis.install0000644000000000000000000000026312254660644012057 0ustar share/userfiles/ var/lib/nagvis share/ usr/share/nagvis docs/ usr/share/nagvis etc/* etc/nagvis etc/nagvis.ini.php-sample etc/apache2-nagvis.conf-sample usr/share/nagvis/defaults debian/patches/0000755000000000000000000000000012257331540010617 5ustar debian/patches/config.patch0000644000000000000000000000406212257330607013112 0ustar Description: Change nagvis config paths for Debian Author: Alexander Reichle-Schmehl Reviewed-by: Markus Frosch Last-Update: 2013-12-12 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/share/server/core/defines/global.php +++ b/share/server/core/defines/global.php @@ -79,11 +79,11 @@ // The last value wins. // // Path to the main configuration file -define('CONST_MAINCFG', '../../../etc/nagvis.ini.php'); -define('CONST_MAINCFG_CACHE', '../../../var/nagvis-conf'); +define('CONST_MAINCFG', '/etc/nagvis/nagvis.ini.php'); +define('CONST_MAINCFG_CACHE', '/var/cache/nagvis/nagvis-conf'); // Path to the main configuration conf.d directory -define('CONST_MAINCFG_DIR', '../../../etc/conf.d'); +define('CONST_MAINCFG_DIR', '/etc/nagvis/conf.d'); // The directory below the NagVis root which is shared by the webserver define('HTDOCS_DIR', 'share'); --- a/share/server/core/classes/GlobalMainCfg.php +++ b/share/server/core/classes/GlobalMainCfg.php @@ -1344,10 +1344,10 @@ * @author Lars Michelsen */ private function setPathsByBase($base, $htmlBase) { - $this->validConfig['paths']['cfg']['default'] = $base.'etc/'; - $this->validConfig['paths']['mapcfg']['default'] = $base.'etc/maps/'; - $this->validConfig['paths']['geomap']['default'] = $base.'etc/geomap'; - $this->validConfig['paths']['profiles']['default'] = $base.'etc/profiles'; + $this->validConfig['paths']['cfg']['default'] = '/etc/nagvis/'; + $this->validConfig['paths']['mapcfg']['default'] = '/etc/nagvis/maps/'; + $this->validConfig['paths']['geomap']['default'] = '/etc/nagvis/geomap'; + $this->validConfig['paths']['profiles']['default'] = '/etc/nagvis/profiles'; $this->validConfig['paths']['var']['default'] = $base.'var/'; $this->validConfig['paths']['sharedvar']['default'] = $base.HTDOCS_DIR.'/var/'; debian/patches/privacy-breach0000644000000000000000000000327612257331540013451 0ustar Description: Cleanup for possible privacy breaches Author: Markus Frosch Last-Update: 2013-12-27 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/docs/de_DE/toc.html +++ b/docs/de_DE/toc.html @@ -77,7 +77,7 @@ --> --- a/docs/en_US/toc.html +++ b/docs/en_US/toc.html @@ -68,7 +68,7 @@

(*) New in 1.7

debian/patches/remove-shell-swf0000644000000000000000000000313112257330727013745 0ustar Description: Disabling netmap component for Debian The component has been removed because it's non-free. Author: Alexander Reichle-Schmehl Reviewed-by: Markus Frosch Last-Update: 2013-12-12 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/share/frontend/nagvis-js/js/frontend.js +++ b/share/frontend/nagvis-js/js/frontend.js @@ -1410,8 +1410,8 @@ oTr.appendChild(oTd); // Link - var oLink = document.createElement('a'); - oLink.href = oGeneralProperties.path_base+'/netmap/shell.html'; +// var oLink = document.createElement('a'); +// oLink.href = oGeneralProperties.path_base+'/netmap/shell.html'; // Status image var oImg = document.createElement('img'); @@ -1419,17 +1419,17 @@ oImg.src = oGeneralProperties.path_iconsets+'std_small_unknown.png'; oImg.alt = 'geomap'; - oLink.appendChild(oImg); +// oLink.appendChild(oImg); oImg = null; // Title var h2 = document.createElement('h2'); h2.appendChild(document.createTextNode('Geomap')); - oLink.appendChild(h2); +// oLink.appendChild(h2); h2 = null; var br = document.createElement('br'); - oLink.appendChild(br); +// oLink.appendChild(br); br = null; // Only show map thumb when configured @@ -1442,8 +1442,8 @@ oImg = null; } - oTd.appendChild(oLink); - oLink = null; +// oTd.appendChild(oLink); +// oLink = null; oTd = null; debian/patches/series0000644000000000000000000000005512257331053012033 0ustar config.patch remove-shell-swf privacy-breach debian/nagvis.docs0000644000000000000000000000000012254660644011326 0ustar debian/compat0000644000000000000000000000000212254660644010375 0ustar 7 debian/README.Debian0000644000000000000000000000502212254660644011237 0ustar nagvis for Debian ================= As of version 1.6.4-1 nagvis uses the check-mk-livestatus backend as default to gather its information, however you'll have to manually activate that module in your Nagios or Icinga setup. Sadly currently it's not possible to make the package just work out of the box. However, you'll only need to do two steps by hand to get NagVis up and running: 1) Actiate the check-mk-livestatus backend (if not already done). 2) Grant the www-data User Access to the check-mk-livestatus socket. See sections bellow for details. Passwords ========= After successfull installation you should be able to access NagVis via http://$host/nagvis/. To login you can use the user accoung "admin" (password "admin") or "guest" (with password "guest"). Using NagVis with Icinga: ========================= Add the following line to your /etc/icinga/icinga.cfg file: -------- broker_module=/usr/lib/check_mk/livestatus.o /var/lib/icinga/rw/live -------- This will activate check-mk-livestatus. Please see /usr/share/doc/check-mk-livestatus/README.Debian for more details and further pointers. You have to grant the www-data user read/write access to MK Livestatus' socket. This may be done by runninf the following commands: -------- /etc/init.d/icinga stop dpkg-statoverride --update --add nagios www-data 2710 /var/lib/icinga/rw dpkg-statoverride --update --add nagios nagios 751 /var/lib/icinga /etc/init.d/icinga start -------- This will also enable support for external commands. Please see /usr/share/doc/icinga/README.Debian section "External Commands" for further details and implications. Using NagVis with Nagios: ========================= Add the following line to your /etc/nagios3/nagios.cfg file: -------- broker_module=/usr/lib/check_mk/livestatus.o /var/lib/nagios3/rw/live -------- This will activate check-mk-livestatus. Please see /usr/share/doc/check-mk-livestatus/README.Debian for more details and further pointers. You have to grant the www-data user read/write access to MK Livestatus' socket. This may be done by runninf the following commands: -------- /etc/init.d/nagios3 stop dpkg-statoverride --update --add nagios www-data 2710 /var/lib/nagios3/rw dpkg-statoverride --update --add nagios nagios 751 /var/lib/nagios3 /etc/init.d/nagios3 start -------- This will also enable support for external commands. Please see /usr/share/doc/nagios3/README.Debian section "External Commands" for further details and implications. -- Alexander Reichle-Schmehl Wed, 22 Feb 2012 15:22:51 +0100 debian/rules0000755000000000000000000000241612254660644010262 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ override_dh_install: dh_install # these files are shipped in the nagvis-demo package; but are installed in a more general rule for dh_install # remove them from the nagvis package here rm -f debian/nagvis/etc/nagvis/conf.d/demo.ini.php \ debian/nagvis/etc/nagvis/maps/demo*.cfg \ debian/nagvis/var/lib/nagvis/userfiles/images/maps/demo*.png \ debian/nagvis/var/lib/nagvis/userfiles/images/shapes/demo*.png # these files are shiped in /var/lib/nagvis/userfiles # they are installed by the more general copy of the content of # /usr/share/nagvis/share rm -rf debian/nagvis/usr/share/nagvis/share/userfiles/ # We use the external php-gettext lib to avoid copy copies rm -rf debian/nagvis/usr/share/nagvis/share/server/core/ext/php-gettext-1.0.9 # Fixing some lintian issues rm -f debian/nagvis/usr/share/nagvis/share/frontend/nagvis-js/ext/dwoo-1.1.0/LICENSE find debian/nagvis/ -name ".gitignore" -delete # remove example configuration files (they are already installed to # /usr/share/doc/nagvis) rm -f debian/nagvis/etc/nagvis/apache2-nagvis.conf-sample rm -f debian/nagvis/etc/nagvis/nagvis.ini.php-sample override_dh_clean: dh_clean debconf-updatepo # vi: noexpandtab : debian/nagvis-demos.install0000644000000000000000000000035412254660644013165 0ustar debian/demo_pool.ini.php etc/nagvis/conf.d/ etc/maps/demo*.cfg etc/nagvis/maps/ share/userfiles/images/shapes/demo*.png var/lib/nagvis/userfiles/images/shapes/ share/userfiles/images/maps/demo*.png var/lib/nagvis/userfiles/images/maps/ debian/README.source0000644000000000000000000000063112254660644011356 0ustar nagvis for Debian ----------------- The original upstream tarball contains some swf files, for which the source is present, but for which we miss the needed tools to build them from source. We therefore had to remove the following files from the upstream tarball: uifx/ share/netmap/shell.swf share/netmap/shell.html (referencing shell.swf and otherwise emmpty) share/netmap/modules/gmap/ debian/nagvis.preinst0000644000000000000000000000177612254660644012107 0ustar #!/bin/sh # preinst script for nagvis # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `install' # * `install' # * `upgrade' # * `abort-upgrade' # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # move /etc/apache2/conf.d/nagvis.conf to /etc/nagvis/apache2.conf dpkg-maintscript-helper mv_conffile \ /etc/apache2/conf.d/nagvis.conf /etc/nagvis/apache2.conf "1:1.7.9+dfsg1-1~" nagvis -- "$@" # remove old automap dpkg-maintscript-helper rm_conffile \ /etc/nagvis/automaps/__automap.cfg "1:1.7.9+dfsg1-1~" nagvis -- "$@" case "$1" in install|upgrade) ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/demo_pool.ini.php0000644000000000000000000000170612254660644012447 0ustar ; ; the line above is to prevent ; viewing this file from web. ; DON'T REMOVE IT! ; in this example the browser switches between the maps demo and demo2 every 15 ; seconds, the rotation is enabled by url: index.php?rotation=demo [rotation_demo] ; These steps are rotated. The single steps may have optional prefixes like "Demo2:" ; which are used as display text on the index pages rotation list. ; You may also add external URLs as steps. Simply enclose the url using [] ; instead of the map name. It is also possible to add automaps to rotations, ; add an @ sign before the automap name to add an automap to the rotation. maps="demo-germany,demo-ham-racks,demo-load,demo-muc-srv1,demo-geomap,demo-automap" ; rotation interval (seconds) interval=5 ; This file defines a backend instance of the Test backend ; which is used by some demo maps. This can be removed when ; you are not interested in the demo maps. [backend_demo] backendtype=Test debian/watch0000644000000000000000000000014112256664256010231 0ustar version=3 opts=dversionmangle=s/\+dfsg\.?\d+$// \ http://sf.net/nagvis/nagvis-([\d\.]*)\.tar\.gz debian/docs0000644000000000000000000000001412254660644010045 0ustar README TODO debian/copyright0000644000000000000000000001114612254661541011132 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: NagVis Source: http://sourceforge.net/projects/nagvis/files/ Files: * Copyright: Copyright 2007-2013, Lars Michelsen Copyright 2007, Michael Luebben and contributors License: GPL-2+ Files: debian/* Copyright: Copyright 2007-2012, Debian Nagios Maintainer Group Copyright 2009, Alexander Wirt Copyright 2009, Jan Wagner Copyright 2011-2012, Alexander Reichle-Schmehl Copyright 2013, Markus Frosch and contributors License: GPL-2+ Files: share/frontend/nagvis-js/ext/dwoo-1.1.0/* Copyright: (c) 2008, Jordi Boggiano License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Dwoo nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY JORDI BOGGIANO ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JORDI BOGGIANO BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: share/netmap/library/Zend/* Copyright: (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . * Neither the name of Zend Technologies USA, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: share/server/core/ext/php-gettext-1.0.9/* Copyright: 2005 Steven Armstrong 2003, 2005, 2006, 2009 Danilo Segan 2005 Nico Kaiser License: GPL-2+ License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. . This package 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. . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2" debian/nagvis.links0000644000000000000000000000110412254660644011524 0ustar /var/lib/nagvis/userfiles /usr/share/nagvis/share/userfiles /usr/share/nagvis/docs /usr/share/doc/nagvis/html /usr/share/nagvis/docs /usr/share/nagvis/share/docs /etc/nagvis /usr/share/nagvis/etc /var/cache/nagvis /usr/share/nagvis/var /usr/share/php/php-gettext /usr/share/nagvis/share/server/core/ext/php-gettext-1.0.9 /usr/share/nagvis/defaults/nagvis.ini.php-sample /usr/share/doc/nagvis/nagvis.ini.php-sample /usr/share/nagvis/defaults/apache2-nagvis.conf-sample /usr/share/doc/nagvis/apache2-nagvis.conf-sample etc/nagvis/apache2.conf etc/apache2/conf-available/nagvis.conf debian/nagvis.postrm0000644000000000000000000000541112254660644011735 0ustar #!/bin/sh # postrm script for nagvis # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # move /etc/apache2/conf.d/nagvis.conf to /etc/nagvis/apache2.conf dpkg-maintscript-helper mv_conffile \ /etc/apache2/conf.d/nagvis.conf /etc/nagvis/apache2.conf "1:1.7.9+dfsg1-1~" nagvis -- "$@" # remove old automap dpkg-maintscript-helper rm_conffile \ /etc/nagvis/automaps/__automap.cfg "1:1.7.9+dfsg1-1~" nagvis -- "$@" # Apache2 if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke disconf nagvis fi if [ -L /etc/apache2/conf.d/nagvis.conf ]; then # remove link to config rm -f /etc/apache2/conf.d/nagvis.conf # reload webserver [ -x $(which invoke-rc.d) ] && invoke-rc.d apache2 reload || true fi case "$1" in purge) ## remove apache part of the configuration and nagvis' ini file ## (both generetaded in postinst) for conf_file in /etc/apache2/conf.d/nagvis.conf /etc/nagvis/apache2.conf /etc/nagvis/nagvis.ini.php ; do rm -f "$conf_file" if which ucf >/dev/null; then ucf --purge "$conf_file" fi if which ucfr >/dev/null; then ucfr --purge nagvis "$conf_file" fi done ## these files are generated by user interaction, ask if they should be removed delete_on_purge="false" if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_input high nagvis/delete_on_purge || true db_go || true db_get nagvis/delete_on_purge || true delete_on_purge="$RET" fi if [ "$delete_on_purge" = "true" ]; then rm -f /etc/nagvis/auth.db rm -rf /etc/nagvis/automaps/* rm -rf /etc/nagvis/maps/* rm -rf /etc/nagvis/profiles/* rm -rf /var/cache/nagvis/* rm -rf /var/lib/nagvis/* fi ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/nagvis.templates0000644000000000000000000000217712257330054012405 0ustar # These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Template: nagvis/monitoring_system Type: select Default: icinga #flag:translate:4 __Choices: icinga, nagios, shinken, other _Description: Monitoring suite used with NagVis: The NagVis package supports Icinga as well as Nagios, using the check-mk-live broker backend. . If you would like to use NagVis with a different backend or a different monitoring suite, please choose "other". You'll have to configure it manually. Template: nagvis/delete_on_purge Type: boolean Default: false _Description: Delete NagVis data when purging the package? NagVis creates files in /var/{cache,lib}/nagvis and /etc/nagvis (for instance background images and map files), including a small database for authentification. If you don't need any of these files, they can be removed now, or you may want to keep them and clean up by hand later. debian/control0000644000000000000000000000376712254660644010617 0ustar Source: nagvis Section: net Priority: extra Maintainer: Debian Nagios Maintainer Group Uploaders: Markus Frosch , Alexander Wirt , Jan Wagner Build-Depends: debhelper (>= 7.0.50~), quilt, po-debconf Standards-Version: 3.9.5 Homepage: http://www.nagvis.org Vcs-Git: git://anonscm.debian.org/pkg-nagios/pkg-nagvis.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nagios/pkg-nagvis.git;a=summary Package: nagvis Architecture: all Pre-Depends: dpkg (>= 1.15.7.2) Depends: ${misc:Depends}, php5-common (>= 5.3.0), php5, php5-gd, ucf, graphviz, php5-sqlite, php-net-socket, php-gettext, check-mk-livestatus Suggests: nagvis-demos Description: visualization addon for Nagios or Icinga NagVis can be used to visualize Nagios or Icinga data, for instance to display network traffic or IT services such as email. . Its key features are: * Display of single hosts or services; * Representation of a host dependent on the state of its services; * Visualization of complete host- or servicegroups with one icon; * Organization of hosts/services/groups into Sub-Map icons; * Graphical representation of complete IT systems. Package: nagvis-demos Architecture: all Depends: ${misc:Depends}, nagvis (= ${source:Version}) Description: visualization addon for Nagios or Icinga - demo maps NagVis can be used to visualize Nagios or Icinga data, for instance to display network traffic or IT services such as email. . Its key features are: * Display of single hosts or services; * Representation of a host dependent on the state of its services; * Visualization of complete host- or servicegroups with one icon; * Organization of hosts/services/groups into Sub-Map icons; * Graphical representation of complete IT systems. . This package provides some demonstration maps.