debian/0000755000000000000000000000000012253107744007173 5ustar debian/icinga-web.config0000644000000000000000000000274612224533767012406 0ustar #!/bin/bash set -e #set -x . /usr/share/debconf/confmodule if [ -f /usr/share/dbconfig-common/dpkg/config ]; then dbc_dbtypes="mysql, pgsql" dbc_dbuser="icinga_web" dbc_dbname="icinga_web" dbc_authmethod_user="password" . /usr/share/dbconfig-common/dpkg/config dbc_go icinga-web $@ fi ### # Configure the root password for icinga-web # only when dbconfig-common is used... ### db_get icinga-web/dbconfig-install || true dbconfig_there="$RET" db_fget icinga-web/rootpassword seen || true rootpassword_seen="$RET" if [ "$1" = "reconfigure" ]; then rootpassword_seen=false fi if [ "$dbconfig_there" = "true" ] && [ "$rootpassword_seen" != "true" ]; then passwordsmatch=no while [ "$passwordsmatch" != "yes" ]; do # enter password db_input high icinga-web/rootpassword || true db_input high icinga-web/rootpassword-repeat || true db_go || true # verify input db_get icinga-web/rootpassword p1="$RET" db_get icinga-web/rootpassword-repeat p2="$RET" if [ "$p1" = "$p2" ]; then passwordsmatch="yes" db_fset icinga-web/rootpassword changed true else db_fset icinga-web/rootpassword seen false db_fset icinga-web/rootpassword-repeat seen false db_fset icinga-web/rootpassword-mismatch seen false db_input critical icinga-web/rootpassword-mismatch || true fi done fi db_go || true debian/icinga-web-pnp.postrm0000644000000000000000000000022012224533767013241 0ustar #!/bin/bash set -e # Clear cache if [ -x /usr/lib/icinga-web/bin/clearcache.sh ]; then /usr/lib/icinga-web/bin/clearcache.sh fi #DEBHELPER# debian/icinga-web.postrm0000644000000000000000000000232312224533767012454 0ustar #!/bin/sh set -e ### # Database ### if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule fi if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then . /usr/share/dbconfig-common/dpkg/postrm dbc_go icinga-web $@ fi ### # Webserver ### # Apache2 if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then echo "disabling Apache2 configuration ..." . /usr/share/apache2/apache2-maintscript-helper apache2_invoke disconf icinga-web fi if [ -L /etc/apache2/conf.d/icinga-web.conf ]; then echo "removing link /etc/apache2/conf.d/icinga-web.conf ..." # remove link to config rm -f /etc/apache2/conf.d/icinga-web.conf # reload webserver [ -x $(which invoke-rc.d) ] && invoke-rc.d apache2 reload || true fi ### # Delete Configs and other stuff on purge ### if [ "$1" = "purge" ]; then rm -f /etc/icinga-web/conf.d/database-web.xml rm -f /etc/icinga-web/conf.d/database-ido.xml if which ucf >/dev/null; then ucf --purge /etc/icinga-web/conf.d/database-web.xml ucf --purge /etc/icinga-web/conf.d/database-ido.xml fi rm -rf /var/cache/icinga-web rm -rf /var/log/icinga-web db_purge fi #DEBHELPER# # stop debconf explicitly db_stop debian/source/0000755000000000000000000000000012224533767010501 5ustar debian/source/format0000644000000000000000000000001412224533767011707 0ustar 3.0 (quilt) debian/databases.xml0000644000000000000000000000665312224533767011664 0ustar mysql://icinga_web:icinga_web@localhost:3306/icinga_web utf8 CONSERVATIVE %core.module_dir%/AppKit/lib/database/models/generated %core.module_dir%/AppKit/lib/database/models false apc true true 60 mysql://icinga:icinga@localhost:3306/icinga icinga_ utf8 true CONSERVATIVE %core.module_dir%/Api/lib/database/models/generated %core.module_dir%/Api/lib/database/models false apc true debian/database-web.xml.tmpl0000644000000000000000000000051412224533767013215 0ustar _DBDSN_ debian/changelog0000644000000000000000000002716012253107505011046 0ustar icinga-web (1.10.0-2) unstable; urgency=medium * [9d4c780] Removed unnecessary dependency on icinga-core (Closes: #731840) * [2a9455c] Define icinga-web breaking icinga-idoutils (<< 1.10) This blocks the user from using icinga-web with an old and outdated IDO schema - it could cause still problems when using a remote IDO database, but helps to block incomplete Icinga upgrades on a single server. Please also see the NEWS entry! (Closes: #732058) -- Markus Frosch Sat, 14 Dec 2013 18:02:02 +0100 icinga-web (1.10.0-1) unstable; urgency=low * [7dae107] Imported Upstream version 1.10.0 (Closes: #719859) DFSG tarball no longer required * [31e2756] Removed patch 21_yui_chartsswf - upstream doesn't use SWF anymore * [d370ed9] Updated packaging for 1.10.0 * [ee59fb7] lintian: ignoring apache2 warnings * [d3240e5] Made icinga-idoutils a recommendation, while requiring at least 1.10.0 (Closes: #678350) -- Markus Frosch Fri, 25 Oct 2013 20:31:59 +0200 icinga-web (1.9.2+dfsg1-1) unstable; urgency=low * [d02e61f] Imported Upstream version 1.9.2 * [aae265c] DFSG cleaned upstream version 1.9.2+dfsg1 -- Markus Frosch Mon, 07 Oct 2013 15:59:59 +0200 icinga-web (1.9.1+dfsg1-1) unstable; urgency=low * [08222f1] Imported Upstream version 1.9.1 * [e1e2b92] DFSG cleaned upstream version 1.9.1+dfsg1 * [2dca23c] Cleaned up installation of docs -- Markus Frosch Sun, 08 Sep 2013 19:04:20 +0200 icinga-web (1.9.0+dfsg1-3) unstable; urgency=low * [e45ba7d] Make debconf stop explicitly at the end of post* to avoid breaking when restarting Apache2 see #713967 -- Markus Frosch Wed, 03 Jul 2013 14:30:41 +0200 icinga-web (1.9.0+dfsg1-2) unstable; urgency=low * [74c7e99] Added php5-json as a Dependency (Closes: #713220) * [4e59689] Fix usage of wrong dbc_dbserver variable in postinst * [adf9c48] Removed debconf integration for httpd selection * [263996a] Removed debconf templates for httpd selection * [d3bd710] Added support for Apache 2.4 config integration (Closes: #714537) * [4d8b05d] Updated README.Debian with Apache2 changes -- Markus Frosch Sun, 30 Jun 2013 20:17:04 +0200 icinga-web (1.9.0+dfsg1-1) unstable; urgency=low * [e8ce6b5] Imported Upstream version 1.9.0 * [3535d71] added database schema for 1.9.0 * [435cae2] switched to Apache2 configuration coming from upstream * [020f7f4] Switched to new build prefix and updated paths in install * Merged back wheezy related changes into unstable and reintegrated them with the latest changes * [f5f36b2] Updated patch 21_yui_chartsswf for 1.9.0 -- Markus Frosch Wed, 08 May 2013 16:50:31 +0200 icinga-web (1.8.3-1) experimental; urgency=low * [bba67b0] Removing own symlinks to nagios-images. The links are now provided by nagios-images itself * [4aa93b9] Imported Upstream version 1.8.3 * [1e1e363] Debian package updates for 1.8.3 -- Markus Frosch Mon, 25 Mar 2013 16:41:30 +0100 icinga-web (1.8.2-1) experimental; urgency=low * [5a03f8a] bump standards version * [14c51bc] Imported Upstream version 1.8.2 * [e80aa3c] Updated module_reporting.xml to match upstream * [f97dab8] remove deprecated soap interface -- Markus Frosch Tue, 12 Feb 2013 17:48:09 +0100 icinga-web (1.8.1-1) experimental; urgency=low * [5f0e216] Debconf language update for ja (Japanese) Thanks to victory (Closes: #693061) * [aede6fb] changed root password update the password now will only be set after it has been changed via dpkg-reconfigure * [3e161a1] updated templates for new password behavior * [74b5d9b] password update now via flag, not a extra template * [f17211e] Imported Upstream version 1.8.1 * [2f1cc10] Updates for upstream 1.8.1 * [b6c0d4c] added README.source -- Markus Frosch Mon, 6 Dec 2012 19:07:11 +0100 icinga-web (1.8.0-1) experimental; urgency=low * [265f0d7] Imported Upstream version 1.8.0~beta * [7739702] updated watch file for dfsg tarballs * [1dbaec2] updated rules for 1.8.0 (CHANGELOG + DB) * [9da2d75] added gbp.conf * [b72c159] added reference to icinga-idoutils to README * [4719f36] patch 10_db_version_fix no longer needed for 1.8.0 * [fe9868e] patch 20_pgsql_statusquery_fix is now upstream * [dc543c0] add build-dependencies php5-cli and php5-xsl * [98e0f8b] more rules changes * [02e787f] Imported Upstream version 1.8.0 -- Markus Frosch Thu, 18 Oct 2012 21:46:24 +0200 icinga-web (1.7.2-1) experimental; urgency=low * [acc4449] optimized apache2.conf some regexp stuff, cleanup and comments * [45f3cb4] Imported Upstream version 1.7.2 * [f5b5dcc] removed patch 20_squishloader_gzip_off now upstream in 1.7.2 * [6a24d99] updated patch 10_db_version_fix for Jessie * [6e3850c] apache2.conf - avoid usage of submatching patterns (Closes: #683126) * [380ebed] integrating icinga-doc as suggested package (Closes: #692358) * [1647481] added patch 20_pgsql_statusquery_fix * [1c7099f] added a cache path for reporting. Thanks to Oskar Liljeblad for suggesting it (Closes: 686336) * [a4a206f] integrated nagios-images, via symlinks and suggest * [ca8d3bc] some cleanup for lintian * [81e0670] removed unneeded quilt dependency -- Markus Frosch Mon, 14 Sep 2012 17:56:05 +0200 icinga-web (1.7.1+dfsg2-6) unstable; urgency=high * [bb01a46] Security fix for a YUI library issue Two .swf files has been removed from the Debian package and the Flash supported chart feature is disable for now. In addition a upstream patch was applied to allow the user to use the feature with a newer .swf resource if he wants to. Please see README.Debian for instructions Closes: #694262 Closes: #694641 * [4ec39a9] DFSG cleaned upstream 1.7.1+dfsg2 SWF binary files has been removed from tarball -- Markus Frosch Wed, 29 Nov 2012 00:17:41 +0100 icinga-web (1.7.1+dfsg1-5) unstable; urgency=high * [4cc829d] DFSG cleaned upstream 1.7.1+dfsg1 Removed JSmin from upstream tarball due to non-free license Closes: #689764 * [795fde4] added gbp.conf for wheezy branch * [bca5fb8] updated watch file for dfsg tarballs -- Markus Frosch Mon, 08 Oct 2012 14:52:10 +0200 icinga-web (1.7.1-4) unstable; urgency=low * [3b184da] fixed postrm to avoid breaking on non installed ucf dependency Closes: #683650 -- Markus Frosch Thu, 02 Aug 2012 17:55:02 +0200 icinga-web (1.7.1-3) unstable; urgency=low [ language updates by the languages teams ] * [b32e4c0] Debconf templates and debian/control reviewed by the debian-l10n-english team as part of the Smith review project. Closes: #677843 * [79894b9] Debconf translation updates * Spanish; (Jathan). Closes: #679598, #680319 * Danish (Joe Hansen). Closes: #679609 * Russian (Yuri Kozlov). Closes: #679610 * Czech (Michal Simunek). Closes: #679702 * Slovak (Ivan Masár). Closes: #679807 * Portuguese (Pedro Ribeiro). Closes: #680127 * French (Steve Petruzzello). Closes: #680338 * German (Martin Eberhard Schauer). Closes: #680501 * Polish (Michał Kułach). Closes: #680525 * Swedish (Martin Bagge / brother). Closes: #680559 * Italian (Beatrice Torracca). Closes: #680570 * Spanish; (Jonathan Bustillos). Closes: #680575 * Big thanks to the language teams! -- Alexander Wirt Wed, 01 Aug 2012 20:40:28 +0200 icinga-web (1.7.1-2) unstable; urgency=low [ Markus Frosch ] * [3fa4d46] added patch 20_squishloader_gzip_off upstream patch for problems with long loading times caused by Squishloader * [3a64851] updated postinst to avoid breaking due to errors * [728bbcc] now using dbconfig-common functions for updating the root password - better database support * [d345062] disabled root password stuff when dbconfig is not chosen * [0f9867a] added kind of support for PostgreSQL socket connections with ident (Closes: #678221)(Closes: #679338) Please see README.Debian for more information! * [a58845a] included htaccess stuff into apache2.conf and some further tuning (Closes: #679340) * [e4a41f0] updated README.Debian with info about clearcache * [f4a2881] moved cache dir to /var/cache/icinga-web and some safe cleanup for the old (Closes: #679341) -- Alexander Wirt Fri, 29 Jun 2012 22:49:22 +0200 icinga-web (1.7.1-1) unstable; urgency=low [ Markus Frosch ] * [69c7ff2] fixed overwrite of some default configs * [f5f08e9] now updating user_modified when setting user password * [79b2588] Imported Upstream version 1.7.1 * [c41e91f/670ce5b] pgsql install script and db upgrade to 1.7.1 * [ac6187c] added patch 10_db_version_fix for fixing database version string in updates * [4b12ae9] fixed root password update bug when /root/.my.cnf exists and contains credentials (Closes: #677844) * [8253475] added partial update for l10n recommendations (Updates: #677843) * [ddc313f] fixed URI escape so URI::Escape is no longer needed (Closes: #678266) * [fd36c40] changed patch 10_db_version_fix - only update pgsql to 1.7.1 * [4094863] removed extra installation of database schemas -- Alexander Wirt Wed, 20 Jun 2012 23:45:15 +0200 icinga-web (1.7.0-2) unstable; urgency=low [ Alexander Wirt ] * [ffa914d] wrap-and-sort * [2c27192] Adapt upload and maintainer to the other pkg-nagios packages [ Markus Frosch ] * [6b04c67] removed unneeded quilt dependency * first release for official Debian (Closes: #618807) * added support for PostgreSQL in auto configuration * new descriptions for the control file * added config system for root password (of Icinga Web) * added config select for webserver configuration * updated README.Debian * changed maintainer mail address * updated database auto configuration to support special chars in password * changed file permission settings for config files -- Alexander Wirt Thu, 14 Jun 2012 23:49:44 +0200 icinga-web (1.7.0-1~netwaysx0) unstable; urgency=low * fixed cache dir removal by prerm script -- Markus Frosch Fri, 18 May 2012 18:13:26 +0200 icinga-web (1.7.0-1~netways) unstable; urgency=low * merged upstream version 1.7.0 * patch "pnp-hosts-url" was fixed in upstream * removed icinga-web-bp from this source package * Jasper Reporting is now disabled by default * idoutils database connection is now on autoconfiguration depending on the icinga-idoutils package * better configuration files for the database connections * better dependencies on other packages -- Markus Frosch Fri, 18 May 2012 11:07:41 +0200 icinga-web (1.6.2-2~netways) unstable; urgency=low * added PNP Plugin * added BP plugin * moved clearcache script * cleaned up maintainer scripts * modified package for git-buildpackage -- Markus Frosch Thu, 10 May 2012 10:48:39 +0200 icinga-web (1.6.2-1~netways) unstable; urgency=low * initial release and testing -- Markus Frosch Wed, 02 May 2012 16:55:22 +0200 debian/icinga-web-pnp.dirs0000644000000000000000000000013112224533767012657 0ustar usr/share/icinga-web/app/modules/Cronks/data/xml/extensions usr/share/doc/icinga-web-pnp debian/po/0000755000000000000000000000000012237151661007610 5ustar debian/po/pt.po0000644000000000000000000000617512224533767010613 0ustar # icinga-web initial portuguese debconf translation # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the icinga-web package. # Pedro Ribeiro , 2012 # msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-01 17:56+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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nova palavra passe de administração web do Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Indique por favor a palavra passe para o utilizador \"root\" para a " "interface web do Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Esta é a palavra passe que necessita para aceder à interface web com o " "utilizador administrativo padrão. Após o login, poderá criar novos " "utilizadores e definir as respectivas permissões." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Indique novamente a palavra passe para verificação:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Indique novamente a palavra passe do root para verificar que a escreveu " "correctamente." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Erro de introdução da palavra passe" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "As duas palavras passe que indicou não coincidem. Tente novamente, por favor." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Servidores apache a configurar para o Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Escolha por favor que servidores Apache devem ser configurados para o " #~ "Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Se preferir configurar os servidores manualmente, deixe todos os " #~ "servidores não selecionados." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Por favor, tome nota que esta palavra passe será redefinidia para este " #~ "valor de cada vez que este pacote seja atualizado." debian/po/de.po0000644000000000000000000000640512224533767010554 0ustar # Translation of debconf tempates for the icinga-web package into German # Copyright (C) 2012 Martin Schauer # This file is distributed under the same license as the icinga-web package. # Martin Eberhard Schauer , 2012. msgid "" msgstr "" "Project-Id-Version: icinga-web 1.7.0-3\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-06 14:00+0200\n" "Last-Translator: Martin Eberhard Schauer \n" "Language-Team: German \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.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Neues Passwort für die Web-Administration von Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Bitte geben Sie das Passwort für den Benutzer »root« für die Icinga-Web-" "Schnittstelle an." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Sie benötigen dieses Passwort, um mit dem Standard-Administratorkonto auf " "die Web-Schnittstelle zuzugreifen. Nachdem Sie sich angemeldet haben, können " "Sie neue Benutzer anlegen und deren Rechte festlegen." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Passwort zur Überprüfung wiederholen:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Bitte geben Sie dasselbe Root-Passwort noch einmal ein, um sicherzustellen, " "dass Sie sich nicht vertippt haben." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Fehler bei der Passworteingabe" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Die beiden von Ihnen eingegebenen Passwörter sind nicht gleich. Versuchen " "Sie es noch einmal." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Für Icinga einzurichtende Apache-Server:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Wählen Sie bitte, welche Apache-Server für Icinga eingerichtet werden " #~ "sollen." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Falls Sie es vorziehen, die Einrichtung manuell durchzuführen, wählen Sie " #~ "keine Server aus." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Beachten Sie bitte, dass das Passwort bei jedem Upgrade des Pakets auf " #~ "diesen Wert zurückgesetzt wird." debian/po/ru.po0000644000000000000000000000710012224533767010603 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the icinga-web package. # # Yuri Kozlov , 2012. msgid "" msgstr "" "Project-Id-Version: icinga-web 1.7.0-3\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-06-30 11:24+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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Новый административный пароль для веб Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "Введите пароль пользователя «root» для веб-интерфейса Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Этот пароль требуется для доступа к веб-интерфейсу с правами " "административного пользователя по умолчанию. После входа, вы сможете создать " "новых пользователей и назначить им права." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Введите пароль ещё раз для проверки:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Введите тот же самый пароль root ещё раз, чтобы убедиться в правильности " "ввода." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Ошибка ввода пароля" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Введённые вами пароли не совпадают. Попробуйте ещё раз." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Серверы apache для настройки под Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "Выберите серверы Apache, которые нужно настроить для Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "Если вы хотите выполнить настройку вручную, то ничего не выбирайте." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Заметим, что пароль будет сбрасываться в это значение каждый раз при " #~ "обновлении пакета." debian/po/pl.po0000644000000000000000000000632512224533767010600 0ustar # Translation of icinga-web debconf templates to Polish. # Copyright (C) 2012 # This file is distributed under the same license as the icinga-web package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-06 16:51+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.4\n" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nowe hasło interfejsu WWW Icingi:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "Proszę wpisać hasło do użytkownika \"root\" do interfejsu WWW Icingi." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Jest to hasło, które jest konieczne do uzyskania dostępu do interfejsu WWW " "za pomocą domyślnego użytkownika administracyjnego. Po zalogowaniu się, " "można utworzyć nowych użytkowników i ustawić ich uprawnienia." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Proszę wprowadzić hasło ponownie:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Proszę wprowadzić to samo hasło roota ponownie, aby sprawdzić, czy zostało " "wpisane poprawnie." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Błąd wprowadzania hasła" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Dwa hasła, które zostały wprowadzone, nie są identyczne. Proszę spróbować " "ponownie." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Konfiguracja serwerów Apache do Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Proszę wybrać, które serwery Apache powinny zostać skonfigurowane dla " #~ "Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Proszę nie zaznaczać żadnego serwera, aby przeprowadzić konfigurację " #~ "ręcznie." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Proszę wziąć po uwagę, że hasło będzie resetowane do tej wartości przy " #~ "każdej aktualizacji pakietu." debian/po/da.po0000644000000000000000000000601112224533767010541 0ustar # Danish translation icinga-web. # Copyright (C) 2012 icinga-web & nedenstående oversættere. # This file is distributed under the same license as the icinga-web package. # Joe Hansen , 2012. # msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-06-30 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Adgangskode for Icingas nye internetadministator:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Angiv venligst adgangskoden for brugeren »root« i Icingas " "internetgrænseflade." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Dette er adgangskoden, du skal bruge for at tilgå internetgrænsefladen med " "den administrative bruger. Efter logind, vil du kunne oprette nye brugere og " "angive deres rettigheder." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Gentast adgangskode for at verificere:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Indtast venligst den samme root-adgangskode igen for at verificere at du har " "tastet den korrekt." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Inddatafejl for adgangskode" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "De to indtastede adgangskoder var ikke ens. Prøv igen." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Apacheservere at konfigurere for Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Vælg venligst hvilke Apacheservere der skal konfigureres for Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Hvis du ønsker at udføre konfigurationen manuelt, så efterlad alle " #~ "serverne umarkeret." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Vær opmærksom på at adgangskoden vil blive nulstillet til denne værdi, " #~ "hver gang pakke bliver opgraderet." debian/po/sv.po0000644000000000000000000000606112224533767010612 0ustar # Translation of icinga-web debconf template to Swedish # Copyright (C) 2012 Martin Bagge # This file is distributed under the same license as the icinga-web package. # # Martin Bagge , 2012 msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-06 20:42+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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nytt administrativt lösenord för Icingia:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "Ange lösenordet för användaren \"root\" i Icingas webbgränssnitt." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Detta är lösenordet du behöver för att få tillgång till webbgränssnittet med " "standardanvändaren \"root\". Efter inloggningen kan du skapa nya användare " "och ställa in deras rättigheter." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Upprepa lösenordet för kontroll:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Ange samma \"root\"-lösenord igen för att kontrollera att du angav det " "korrekt." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Fel vid inmatning av lösenord" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Lösenorden du angav stämmer inte överrens. Försök igen." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Apacheserver att ställa in för Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "Ange vilken Apacheserver som ska ställas in för Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Lämna samtliga serverar omarkerade om du vill göra inställningarna " #~ "manuellt istället." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Notera att lösenordet kommer att återställas tinn vad du anger här varje " #~ "gång paketet uppgraderas." debian/po/es.po0000644000000000000000000000757612224533767010605 0ustar # icinga-web po-debconf translation to Spanish. # Copyright (C) 2012 Software in the Public Interest # This file is distributed under the same license as the icinga-web package. # # Changes: # - Initial translation # Jathan , 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: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-04 18:11-0500\n" "Last-Translator: Jonathan Bustillos \n" "Language-Team: Debian Spanish \n" "Language: es\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" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nueva contraseña web administrativa para Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Introduzca la contraseña para el usuario «root» en la interfaz web de Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Esta es la contraseña que necesita para acceder a la interfaz web con el " "usuario administrativo predeterminado. Después de iniciar sesión, usted será " "capaz de crear nuevos usuarios y establecer sus permisos." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Vuelva a introducir la contraseña para verificar:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Introduzca la contraseña de root otra vez para verificar que la ha escrito " "adecuadamente." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Error al introducir la contraseña" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Las dos contraseñas que ha introducido son diferentes. Inténtelo de nuevo." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Servidores Apache que serán configurados para Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Seleccione los servidores Apache que deben ser configurados para Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Si prefiere realizar la configuración manualmente, deje todos los " #~ "servidores sin marcar." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Tenga en cuenta que la contraseña se restablecerá a este valor cada vez " #~ "que se actualice el paquete." debian/po/POTFILES.in0000644000000000000000000000005712224533767011376 0ustar [type: gettext/rfc822deb] icinga-web.templates debian/po/it.po0000644000000000000000000000621412224533767010576 0ustar # Italian translation of icinga-web debconf messages # Copyright (C) 2012, icinga-web package copyright holder # This file is distributed under the same license as the icinga-web package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-06 22:25+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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nuova password di amministrazione web di Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Inserire la password dell'utente \"root\" dell'interfaccia web di Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Questa è la password necessaria per accedere all'interfaccia web con " "l'utente di amministrazione predefinito. Dopo il login, sarà possibile " "creare nuovi utenti e impostare i loro permessi." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Inserire nuovamente la password per verifica:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Inserire nuovamente la stessa password di root per verificare che sia stata " "digitata correttamente." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Errore nell'inserimento della password" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Le due password inserite non sono uguali; riprovare." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Server Apache da configurare per Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Selezionare quali server Apache devono essere configurati per Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Se si preferisce fare la configurazione a mano, lasciare tutti i server " #~ "non selezionati." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Si tenga a mente che la password verrà reimpostata a questo valore ogni " #~ "volta che il pacchetto verrà aggiornato." debian/po/cs.po0000644000000000000000000000605312224533767010570 0ustar # Czech PO debconf template translation of icinga-web. # Copyright (C) 2012 Michal Simunek # This file is distributed under the same license as the icinga-web package. # Michal Simunek , 2012. # msgid "" msgstr "" "Project-Id-Version: icinga-web 1.7.0-3\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-06-30 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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Heslo pro nového správce webu Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "Zadejte prosím heslo uživatele \"root\" pro webové rozhraní Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Toto heslo budete potřebovat pro přístup k webovému rozhraní s výchozím " "uživatelským jménem správce. Po přihlášení budete moci vytvářet nové " "uživatele a nastavovat jim oprávnění." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Znovu zadejte heslo k ověření:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Zadejte prosím znovu stejné heslo pro uživatele root k ověření, že jste jej " "napsali správně." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Chyba při zadávání hesla" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Zadaná hesla nejsou stejná. Zkuste to prosím znovu." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Pro Icinga nastavit Apache servery:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "Zvolte prosím, které Apache servery se mají nastavit pro Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Chcete-li raději provést nastavení ručně, ponechte všechny servery " #~ "nevybrané." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Vezměte prosím na vědomí, že toto heslo bude při každé aktualizaci " #~ "balíčku znovu nastaveno na tuto hodnotu." debian/po/ja.po0000644000000000000000000000630512224533767010555 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: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-10-10 23:29+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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Icinga の新しいウェブ管理パスワード:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Icinga のウェブインターフェースでの「root」ユーザのパスワードを提供してくださ" "い。" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "これはデフォルト管理ユーザでウェブインターフェースにアクセスするのに必要とな" "るパスワードです。ログイン後、新規ユーザの作成や権限設定が可能になります。" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "確認用にパスワードを再入力してください:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "正しく入力されていることを確認するため、同一の root 用パスワードを再び入力し" "てください。" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "パスワードの入力に誤りがあります。" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "入力された 2 つのパスワードが異なります。やり直してください。" #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Icinga 用に設定する Apache サーバ:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "Icinga 用に設定する Apache サーバを選択してください。" #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "手作業で設定したい場合はどのサーバも選択しないようにしてください。" #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "パッケージ更新のたびにパスワードがこの値にリセットされることを承知しておい" #~ "てください。" debian/po/sk.po0000644000000000000000000000612112224533767010574 0ustar # Slovak translation of icinga-web debconf templates. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the icinga-web package. # Ivan Masár , 2012. # msgid "" msgstr "" "Project-Id-Version: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-01 19:15+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Nové heslo webového systému na správu Icinga:" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "Prosím, zadajte heslo používateľa „root“ vo webovom rozhraní Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Toto je heslo, ktoré potrebujete, aby ste mohli do webového rozhrania " "pristupovať s ako predvolený správca. Po prihlásení budete môcť vytvárať " "nových používateľov a nastavovať ich oprávnenia." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Zadajte heslo znova na overenie:" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Prosím, znova zadajte rovnaké heslo na overenie, že ste ho napísali správne." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Chyba pri zadávaní hesla" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Dve heslá, ktoré ste zadali sa nezhodnovali. Prosím, skúste to znova." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Servery Apache, ktoré sa majú nakonfigurovať na spúšťanie Icinga:" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "" #~ "Prosím, vyberte, ktoré servery Apache sa majú nakonfigurovať na spúšťanie " #~ "Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Ak uprednostňujete konfiguráciu vykonať ručne, ponechajte všetky servery " #~ "nevybrané." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Prosím, buďte si vedomí, že heslo sa obnoví na túto hodnotu pri každej " #~ "aktualizácii balíka." debian/po/templates.pot0000644000000000000000000000324412224533767012344 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: icinga-web\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\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: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" debian/po/fr.po0000644000000000000000000000616412224533767010575 0ustar # French translation of icinga-web debconf template # Copyright (C) 2012 Debian French l10n Team # This file is distributed under the same license as the icinga-web package. # Steve Petruzzello , 2012 # msgid "" msgstr "" "Project-Id-Version: icinga-web_1.7.1-2\n" "Report-Msgid-Bugs-To: icinga-web@packages.debian.org\n" "POT-Creation-Date: 2013-06-24 11:05+0200\n" "PO-Revision-Date: 2012-07-05 08:42+0200\n" "Last-Translator: Steve Petruzzello @bluewin.ch>\n" "Language-Team: French \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "Icinga new web administrative password:" msgstr "Mot de passe de l'administrateur web d'Icinga :" #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "Please provide the password for the user \"root\" in Icinga's web interface." msgstr "" "Veuillez indiquez un mot de passe pour l'utilisateur « root » de l'interface " "web d'Icinga." #. Type: password #. Description #: ../icinga-web.templates:2001 msgid "" "This is the password you need to access the web interface with the default " "administrative user. After login, you will be able to create new users and " "set their permissions." msgstr "" "Ce mot de passe permet à l'administrateur par défaut de se connecter à " "l'interface web. Après la connexion, vous pourrez créer des nouveaux " "utilisateurs et régler les autorisations." #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "Re-enter password to verify:" msgstr "Confirmation du mot de passe :" #. Type: password #. Description #: ../icinga-web.templates:3001 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "" "Veuillez entrer à nouveau le mot de passe du superutilisateur afin de " "vérifier qu'il a été saisi correctement." #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "Password input error" msgstr "Erreur de saisie du mot de passe" #. Type: error #. Description #: ../icinga-web.templates:4001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Les deux mots de passe que vous avez entrés sont différents. Veuillez " "recommencer." #~ msgid "apache2" #~ msgstr "Apache2" #~ msgid "Apache servers to configure for Icinga:" #~ msgstr "Serveurs Apache à configurer pour Icinga :" #~ msgid "Please select which Apache servers should be configured for Icinga." #~ msgstr "Veuillez choisir le serveur Apache à configurer pour Icinga." #~ msgid "" #~ "If you would prefer to perform configuration manually, leave all servers " #~ "unselected." #~ msgstr "" #~ "Si vous préférez effectuer la configuration vous-même, ne sélectionnez " #~ "aucun serveur." #~ msgid "" #~ "Please be aware that the password will be reset to this value each time " #~ "the package is upgraded." #~ msgstr "" #~ "Veuillez noter que ce mot de passe sera réinitialisé à chaque mise à jour " #~ "du paquet." debian/icinga-web.docs0000644000000000000000000000005712224533767012062 0ustar doc/CHANGELOG* doc/AUTHORS doc/THANKS doc/TODO debian/icinga-web.postinst0000644000000000000000000001511612232775525013016 0ustar #!/bin/bash set -e ### # Install DB ### . /usr/share/debconf/confmodule . /usr/share/dbconfig-common/dpkg/postinst dbc_go icinga-web $@ ### # Database connection files ### uriescape() { echo "$(perl -MCGI::Util -e 'print CGI::Util::escape($ARGV[0]);' "$1")" } generate_dbxml() { local file="$1" local template="$2" local dbconfig="$3" # load dbconfig file if [ -f "$dbconfig" ]; then source $dbconfig else ( echo echo "[ WARNING ]" echo "cannot configure database: $file" echo "the database might not been configured with dbconfig-common" echo "or there was another problem, the config file is missing:" echo " $dbconfig" echo ) >&2 return fi # leave when dbconfig not enabled if [ "$dbc_install" != "true" ]; then echo "database config failed: dbconfig-common for \"$(basename $dbconfig .conf)\" not enabled!" return fi # create tempfile local tempfile=$(tempfile -m 600 -p "$(basename $file)") # add a colon to port [ "$dbc_dbport" != "" ] && dbc_dbport=":$dbc_dbport" dbc_edbuser=$(uriescape $dbc_dbuser) dbc_edbpass=$(uriescape $dbc_dbpass) dbc_edbname=$(uriescape $dbc_dbname) # allow pgsql socket [ "$dbc_dbserver" = "" ] && [ "$dbc_authmethod_user" = "ident" ] && dbc_dbserver="%2Fvar%2Frun%2Fpostgresql" # uri escape the vars # build the dsn local dsn="$dbc_dbtype://$dbc_edbuser:$dbc_edbpass@${dbc_dbserver:=localhost}$dbc_dbport/$dbc_edbname" # write xml to temp cat $template | sed "s|_DBDSN_|$dsn|" > $tempfile # replace the file with ucf ucf --debconf-ok $tempfile $file echo "database config successful: $file" rm -f $tempfile } generate_dbxml /etc/icinga-web/conf.d/database-web.xml \ /usr/share/icinga-web/tmpl/database-web.xml.tmpl \ /etc/dbconfig-common/icinga-web.conf generate_dbxml /etc/icinga-web/conf.d/database-ido.xml \ /usr/share/icinga-web/tmpl/database-ido.xml.tmpl \ /etc/dbconfig-common/icinga-idoutils.conf ### # Apache2 ### if [ "$1" = "configure" ]; 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 icinga-web # remove OLD Apache 2.2 link [ -L /etc/apache2/conf.d/icinga-web.conf ] && rm /etc/apache2/conf.d/icinga-web.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/icinga-web.conf ] || ln -vs ../../icinga-web/apache2.conf /etc/apache2/conf.d/icinga-web.conf # reload webserver [ -x $(which invoke-rc.d) ] && invoke-rc.d apache2 reload fi fi ### # Set root password in database ### setpassword() { password="$1" # load database connection info if [ ! -f /etc/dbconfig-common/icinga-web.conf ]; then return fi source /etc/dbconfig-common/icinga-web.conf # gen new salt salt=$(php5 -r 'echo hash("sha256", uniqid("root_", mt_rand()));') # gen new pw hash export SALT="$salt" export PW="$password" pwhash=$(php5 -r 'echo hash_hmac("sha256", getenv("PW"), getenv("SALT"));') salt_e=${salt/\'/\\\'} pwhash_e=${pwhash/\'/\\\'} if [ "$dbc_dbtype" = "mysql" ]; then # query the database to update query="UPDATE nsm_user SET user_password='""$pwhash_e""', user_salt = '""$salt_e""', user_modified = NOW() WHERE user_name = 'root';" # use app user and password for the command dbc_dbadmin="$dbc_dbuser" dbc_dbadmpass="$dbc_dbpass" if dbc_mysql_exec_command "$query"; then echo "root password updates successfully!" db_fset icinga-web/rootpassword changed false || true db_go || true else echo "setting root password failed: $dbc_error" >&2 fi elif [ "$dbc_dbtype" = "pgsql" ]; then # query the database to update query="UPDATE nsm_user SET user_password='""$pwhash_e""', user_salt = '""$salt_e""', user_modified = NOW() WHERE user_name = 'root';" # use the app user _dbc_asuser=1 if _dbc_pgsql_exec_command "$query"; then echo "root password updates successfully!" db_fset icinga-web/rootpassword changed false || true db_go || true else echo "setting root password failed: $dbc_error" >&2 fi else echo "db type '$dbc_dbtype' not implemented for setting root password!" >&2 fi } ### # root password for Icinga Web ### db_get icinga-web/dbconfig-install || true if [ "$RET" = "true" ]; then db_fget icinga-web/rootpassword changed || true if [ "$RET" != "false" ]; then db_get icinga-web/rootpassword || true if [ "$RET" != "" ]; then setpassword $RET else echo "no password configured - root password for Icinga Web will not be set!" fi else echo "root password has not been changed." fi fi ### # Clear cache ### if [ -x /usr/lib/icinga-web/bin/clearcache.sh ]; then /usr/lib/icinga-web/bin/clearcache.sh fi ### # Permissions ### setperm() { local user="$1" local group="$2" local mode="$3" local 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 } setperm root www-data 0640 /etc/icinga-web/conf.d/access.xml setperm root www-data 0640 /etc/icinga-web/conf.d/auth.xml setperm root www-data 0640 /etc/icinga-web/conf.d/databases.xml if [ -f /etc/icinga-web/conf.d/database-web.xml ]; then setperm root www-data 0640 /etc/icinga-web/conf.d/database-web.xml fi if [ -f /etc/icinga-web/conf.d/database-ido.xml ]; then setperm root www-data 0640 /etc/icinga-web/conf.d/database-ido.xml fi setperm root www-data 0640 /etc/icinga-web/conf.d/module_reporting.xml setperm www-data adm 0770 /var/log/icinga-web setperm www-data www-data 0770 /var/cache/icinga-web setperm www-data www-data 0770 /var/cache/icinga-web/reporting #DEBHELPER# # stop debconf explicitly db_stop debian/module_reporting.xml0000644000000000000000000000156212224533767013305 0ustar http://127.0.0.1:8080/jasperserver jasperadmin jasperadmin /icinga/reports debian/icinga-web.NEWS0000644000000000000000000000072012253107021011661 0ustar icinga-web (1.10.0-1) unstable; urgency=low Please make sure to check your version of Icinga IDOutils, Icinga Web 1.10.0 requires the IDO schema to be at least version 1.10.0. The reason is a column change that cannot be handled backwards compatible in the database backend of icinga-web. Please see also the upstream changelog: /usr/share/doc/icinga-web/CHANGELOG-1.10.gz -- Markus Frosch Fri, 25 Oct 2013 20:22:02 +0200 debian/clean0000644000000000000000000000003112224533767010200 0ustar config.status config.log debian/icinga-web-pnp.install0000644000000000000000000000024612224533767013373 0ustar contrib/PNP_Integration/README usr/share/doc/icinga-web-pnp contrib/PNP_Integration/templateExtensions/* /usr/share/icinga-web/app/modules/Cronks/data/xml/extensions debian/TODO0000644000000000000000000000031012232775525007662 0ustar TODOs for icinga-web ==================== * Recheck external libraries, especially extjs for migration to a dependency -- Markus Frosch Fri, 25 Oct 2013 17:42:15 +0200 debian/icinga-web.install0000644000000000000000000000160512232775525012577 0ustar etc/apache2/icinga-web.conf etc/icinga-web etc/icinga-web/conf.d/* etc/icinga-web/conf.d debian/database-ido.xml.tmpl usr/share/icinga-web/tmpl debian/database-web.xml.tmpl usr/share/icinga-web/tmpl debian/databases.xml etc/icinga-web/conf.d debian/cronks.xml etc/icinga-web/conf.d debian/module_reporting.xml etc/icinga-web/conf.d usr/share/icinga-web/app/* usr/share/icinga-web/app usr/share/icinga-web/bin/clearcache.sh usr/lib/icinga-web/bin usr/share/icinga-web/lib/agavi usr/share/icinga-web/lib usr/share/icinga-web/lib/doctrine usr/share/icinga-web/lib usr/share/icinga-web/lib/ext3 usr/share/icinga-web/lib usr/share/icinga-web/lib/jit usr/share/icinga-web/lib usr/share/icinga-web/lib/jsgettext usr/share/icinga-web/lib usr/share/icinga-web/lib/phpseclib usr/share/icinga-web/lib usr/share/icinga-web/lib/raphael usr/share/icinga-web/lib usr/share/icinga-web/pub/* usr/share/icinga-web/pub debian/database-ido.xml.tmpl0000644000000000000000000000060212224533767013211 0ustar _DBDSN_ debian/icinga-web-pnp.postinst0000644000000000000000000000022012224533767013600 0ustar #!/bin/bash set -e # Clear cache if [ -x /usr/lib/icinga-web/bin/clearcache.sh ]; then /usr/lib/icinga-web/bin/clearcache.sh fi #DEBHELPER# debian/compat0000644000000000000000000000000212224533767010377 0ustar 7 debian/icinga-web.prerm0000644000000000000000000000072612224533767012262 0ustar #!/bin/bash set -e . /usr/share/debconf/confmodule . /usr/share/dbconfig-common/dpkg/prerm dbc_go icinga-web $@ ### # Clear cache ### if [ -x /usr/lib/icinga-web/bin/clearcache.sh ]; then /usr/lib/icinga-web/bin/clearcache.sh fi # remove old cache dir (versions before 1.7.1-2) rm -rf /var/lib/icinga-web/app/cache [ -d /var/lib/icinga-web/app ] && rmdir /var/lib/icinga-web/app || true [ -d /var/lib/icinga-web ] && rmdir /var/lib/icinga-web || true #DEBHELPER# debian/icinga-web.links0000644000000000000000000000023012232775525012242 0ustar usr/share/doc/icinga-web/CHANGELOG-1.10.gz usr/share/doc/icinga-web/changelog.gz etc/icinga-web/apache2.conf etc/apache2/conf-available/icinga-web.conf debian/rules0000755000000000000000000001035512232775525010264 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. # export DH_VERBOSE=1 b := $(shell pwd)/debian %: dh --buildsystem=autoconf $@ override_dh_auto_clean: dh_auto_clean # temp fix for 1.10.0 rm -f app/modules/Api/config/views.xml override_dh_auto_configure: ./configure --prefix=/usr/share/icinga-web \ --bindir=/usr/lib/icinga-web/bin \ --sysconfdir=/etc/icinga-web \ --datarootdir=/usr/share/icinga-web \ --docdir=/usr/share/doc/icinga-web \ --libdir=/usr/lib/icinga-web \ --with-web-absolute-path=/usr/share/icinga-web/pub \ --with-web-apache-path="/etc/apache2/conf.d" \ --with-web-user="www-data" --with-web-group="www-data" \ --with-cache-dir=/var/cache/icinga-web \ --with-log-dir=/var/log/icinga-web \ --with-conf-dir=/etc/icinga-web/conf.d \ --with-icinga-bin="/usr/sbin/icinga" \ --with-icinga-cfg="/etc/icinga/icinga.cfg" \ --with-icinga-objects-dir="/etc/icinga/objects" \ --with-api-cmd-file="/var/lib/icinga/rw/icinga.cmd" \ --with-reporting_tmp_dir="/var/cache/icinga-web/reporting" override_dh_auto_build: echo "no build necessary..." override_dh_auto_test: echo "skipping tests - they are development only!" override_dh_install: # Remove empty paths rm -rf ${b}/tmp/usr/share/icinga-web/lib/agavi/src/build/ rm -rf ${b}/tmp/usr/share/icinga-web/app/modules/Reporting/data/ rm -rf ${b}/tmp/usr/share/icinga-web/app/data/i18n/po/ # Install the rest dh_install # MySQL schema for dbconfig-common cp etc/schema/mysql.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/install/mysql cp etc/schema/updates/mysql/mysql_v1-6-2_to_v1-7.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.7.0-1 cp etc/schema/updates/mysql/mysql_v1-7-1_to_v1-7-2.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.7.2-1 cp etc/schema/updates/mysql/mysql_v1-7-2_to_v1-8-0.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.8.0~beta-1 cp etc/schema/updates/mysql/mysql_v1-8-0_to_v-1-8-1.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.8.1~schema0 cp etc/schema/updates/mysql/mysql_v1-8-1_to_v1-8-3.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.8.3~schema0 cp etc/schema/updates/mysql/mysql_v1-8-3_to_v1-9.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.9.0~0schema cp etc/schema/updates/mysql/mysql_v1-9-1_to_1-10-0.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/mysql/1.10.0~0schema # PGSQL schema for dbconfig-common cp etc/schema/pgsql.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/install/pgsql cp etc/schema/updates/pgsql/pgsql_v1-7-0_to_v1-7-1.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.7.1-1 cp etc/schema/updates/pgsql/pgsql_v1-7-1_to_v1-7-2.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.7.2-1 cp etc/schema/updates/pgsql/pgsql_v1-7-2_to_v1-8-0.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.8.0~beta-1 cp etc/schema/updates/pgsql/pgsql_v1-8-0_to_v-1-8-1.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.8.1~schema0 cp etc/schema/updates/pgsql/pgsql_v1-8-1_to_v1-8-3.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.8.3~schema0 cp etc/schema/updates/pgsql/pgsql_v1-8-3_to_v1-9.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.9.0~0schema cp etc/schema/updates/pgsql/pgsql_v1-9-1_to_v1-10-0.sql ${b}/icinga-web/usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql/1.10.0~0schema # rename apache config file mv ${b}/icinga-web/etc/icinga-web/icinga-web.conf ${b}/icinga-web/etc/icinga-web/apache2.conf override_dh_compress: dh_compress # make sure all changelogs are compressed find debian/icinga-web/usr/share/doc/icinga-web -regex ".*/CHANGELOG-[0-9]\.[0-9]+" | xargs -r gzip -9 # vi: ts=4 sw=4 noexpandtab : debian/icinga-web.templates0000644000000000000000000000215012224533767013124 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: icinga-web/rootpassword Type: password _Description: Icinga new web administrative password: Please provide the password for the user "root" in Icinga's web interface. . This is the password you need to access the web interface with the default administrative user. After login, you will be able to create new users and set their permissions. # . # Please be aware that the password will be reset to this value # each time the package is upgraded. Template: icinga-web/rootpassword-repeat Type: password _Description: Re-enter password to verify: Please enter the same root password again to verify that you have typed it correctly. Template: icinga-web/rootpassword-mismatch Type: error _Description: Password input error The two passwords you entered were not the same. Please try again. debian/icinga-web.README.Debian0000644000000000000000000000707312224533767013255 0ustar icinga-web for Debian ===================== Notes: * Apache2 configuration due to changes introduced with Apache 2.4 the debconf setting which webservers are enabled is now removed. If you want to disable icinga-web in your webserver do the following: Apache >= 2.4: $ a2disconf icinga-web $ service apache2 reload Apache < 2.4: $ rm /etc/apache2/conf.d/icinga-web.conf # remove link $ touch /etc/apache2/conf.d/icinga-web.conf # create empty file $ service apache2 reload * [Security Information] The Yahoo Interface library is used in Icinga Web to render certain pie charts, unfortunatly this causes problems due to a cross site scripting issue. The flash component has been removed from Debian and the charting feature is disabled. Though a upstream fix is applied to allow the usage - when the user decides to... If you want to use the TO charts you have to either download a .swf file to your server or use a swf loaded from yahooapis.com on demand. See the file /usr/share/icinga-web/app/modules/AppKit/lib/js/AppKit.js for configuration options. Remote files: uncomment the respective lines there and run /usr/lib/icinga-web/bin/clearcache.sh Local files: download both files http://yui.yahooapis.com/2.8.2/build/charts/assets/charts.swf http://swfobject.googlecode.com/svn/trunk/swfobject/expressInstall.swf and store them in /usr/share/icinga-web/lib/ext3/resources/ make sure to also change AppKit.js to uncomment the respective lines and run /usr/lib/icinga-web/bin/clearcache.sh * Please also read /usr/share/doc/icinga-idoutils/README.Debian this file will explain how to enable the IDO in the first place * Supported databases are: MySQL and PostgreSQL (by auto configuration) * PostgreSQL with ident authentication: This is not really supported, just because icinga-web runs as www-data per default. You will have to do some configuration stuff to run icinga-web with ident. But you'll have to do this on your own. Though the maintainer scripts will create you a config for the socket connection. Every access rights the maintainer script changes is checked against dpkg-statoverride - so make sure to use it. * Icinga Web uses two database connections 1) IDO database, which is configured with by a dependency on the icinga-idoutils packet generated file: /etc/icinga-web/conf.d/database-ido.xml 2) Icinga Web database, which stores users and settings and is configured by using the dbconfig-common system and debconf generated file: /etc/icinga-web/conf.d/database-web.xml * If you want to to use different database connection settings modify the file /etc/icinga-web/conf.d/databases.xml and comment the includes of the auto generated xml files * Jasper Reporting is disabled by default to activate it you have to edit: /etc/icinga-web/conf.d/cronks.xml comment out the xml node /etc/icinga-web/conf.d/module_reporting.xml set and change the url and user/pass to fit your jasper instance Please see the Icinga Wiki for more information. * If you change any configuration or code file of Icinga Web it is necessary to clear the cache. To achieve this run this command as root: /usr/lib/icinga-web/bin/clearcache.sh -- Markus Frosch Mon, 24 Jun 2013 11:36:34 +0200 debian/cronks.xml0000644000000000000000000001233012224533767011221 0ustar Cronks System.IframeView false Icinga docs english version Docs EN cronks.Info2 misc 300 Cronks System.IframeView false Icinga docs german version Docs DE cronks.Info2 misc 310 Reporting Cronk.Main true false Seamless Jasper Integration Reporting icinga-reporting cronks.Weather_Could_Sun appkit_admin modules.reporting.jasperconfig.default 1 1 1 debian/README.source0000644000000000000000000000165012224533767011362 0ustar icinga-web for Debian ===================== Here is a checklist for new upstream releases: * use pristine-tar for importing (enabled via debian/gbp.conf) * Database Schema changes check for sql updates in etc/schema/updates/mysql/ etc/schema/updates/pgsql/ the file like "mysql_v1-8-3_to_v1-9-0.sql" should be referenced in debian/rules and copied to a appropriate name, like: "1.9.0~0schema" (the strange prefix is because of sql updating for backports or unofficial releases, or betas) * Check for obsolete patches * For major releases: update CHANGELOG symlink in debian/icinga-web.links * Updates for config files in debian/ vimdiff etc/conf.d/cronks.xml debian/cronks.xml vimdiff etc/conf.d/databases.xml.in debian/databases.xml vimdiff etc/conf.d/module_reporting.xml debian/module_reporting.xml -- Markus Frosch Wed, 8 May 2013 16:02:59 +0200 debian/watch0000644000000000000000000000014212224533767010227 0ustar version=3 opts=dversionmangle=s/\+dfsg\d*// \ http://sf.net/icinga/icinga-web-([0-9-.]+)\.tar\.gz debian/icinga-web.dirs0000644000000000000000000000066012224533767012073 0ustar usr/share/dbconfig-common/data/icinga-web/install usr/share/dbconfig-common/data/icinga-web/upgrade/mysql usr/share/dbconfig-common/data/icinga-web/upgrade/pgsql etc/icinga-web/conf.d usr/share/icinga-web usr/share/icinga-web/app usr/share/icinga-web/pub usr/share/icinga-web/lib usr/share/icinga-web/tmpl usr/lib/icinga-web/bin var/cache/icinga-web var/cache/icinga-web/reporting var/log/icinga-web usr/share/doc/icinga-web debian/icinga-web.lintian-overrides0000644000000000000000000000042512232775525014566 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/gbp.conf0000644000000000000000000000004212252574174010612 0ustar [DEFAULT] ;debian-branch = master debian/copyright0000644000000000000000000004375712224533767011154 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Icinga Web Source: http://sourceforge.net/projects/icinga/files/icinga-web/ Files: * Copyright: Copyright 2009, Icinga Development Team 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, write to the . Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . 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'. Files: debian/* Copyright: Copyright 2012, Markus Frosch 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, write to the . Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . 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'. Files: lib/agavi/* Copyright: Copyright Sean Kerr Copyright Agavi Project Team License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. Files: lib/agavi/src/config/schematron/* Copyright: Copyright (c) 2000-2010 Rick Jelliffe and Academia Sinica Computing Center, Taiwan License: BSD This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. . 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. . 3. This notice may not be removed or altered from any source distribution. Files: lib/agavi/src/date/* Copyright: Copyright 1995-2006, International Business Machines Corporation and others Copyright, The Agavi Project License: BSD Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. . Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. . All trademarks and registered trademarks mentioned herein are the property of their respective owners. Files: lib/agavi/src/translation/data/* Copyright: Copyright 1991-2006, Unicode, Inc. License: BSD Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. . Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. . Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be registered in some jurisdictions. All other trademarks and registered trademarks mentioned herein are the property of their respective owners. Files: lib/doctrine/* Copyright: 2006-2009 Jonathan H. Wage 2005-2007 Konsta Vesterinen License: LGPL-2.1 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. Files: lib/doctrine/lib/vendor/* Copyright: Fabien Potencier License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/doctrine/lib/vendor/sfYaml/sfYaml.php Copyright: 2004-2006 Fabien Potencier License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/doctrine/lib/Doctrine/Parser/sfYaml/* Copyright: Fabien Potencier License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/doctrine/lib/Doctrine/Parser/sfYaml/sfYaml.php Copyright: 2004-2006 Fabien Potencier License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/doctrine/lib/Doctrine/Cli/AnsiColorFormatter.php Copyright: 2004-2006 Fabien Potencier License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/doctrine/lib/Doctrine/Cli/Formatter.php Copyright: Fabien Potencier License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: lib/doctrine/lib/Doctrine/Connection/Mssql.php Copyright: 2005-2008, Zend Technologies USA, Inc. 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: lib/ext3/* Copyright: Copyright, Ext JS LLC 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, write to the . Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . 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'. Files: lib/ext3/examples/image-organizer/SWFUpload/* Copyright: Copyright 2006-2007, Lars Huring, Olov Nilzién and Mammon Media Copyright 2007-2008, Jake Roberts License: MIT Please see http://www.opensource.org/licenses/mit-license.html Files: lib/jsgettext/* Copyright: Copyright 2008, Joshua I. Miller License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. Files: lib/jit/* Copyright: Copyright 2010, Nicolas Garcia Belmonte 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 the organization 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 NICOLAS GARCIA BELMONTE ``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 NICOLAS GARCIA BELMONTE 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: lib/phpseclib/Crypt/* lib/phpseclib/Math/* lib/phpseclib/Net/* Copyright: Copyright MMVII, Jim Wigginton License: BSD Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: lib/phpseclib/PHP/* Copyright: Copyright 2004-2007, Aidan Lister Copyright 2004-2007, Arpad Ray License: MIT Please see http://www.opensource.org/licenses/mit-license.html (as referenced by author) Files: lib/phing/* Copyright: Copyright, Phing Development Team 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, write to the . Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, A 02110-1301, USA. . 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'. debian/icinga-web-pnp.README.Debian0000644000000000000000000000055012224533767014041 0ustar icinga-web-pnp for Debian ========================= icinga-web-pnp provides the PNP4Nagios Cronk for Icinga Web. There is no really configuration required. The cronk provides an iframe for the pnp4nagios-web pages and buttons for hosts and services in the grid view of Icinga Web. -- Markus Frosch Sat, 12 Nov 2012 24:44:35 +0100 debian/control0000644000000000000000000000576212253106371010603 0ustar Source: icinga-web Section: php Priority: extra Maintainer: Debian Nagios Maintainer Group Uploaders: Markus Frosch , Alexander Wirt , Jan Wagner Build-Depends: autotools-dev, debhelper (>= 7.0.50~), po-debconf, php5-cli, php5-xsl, php5-json Standards-Version: 3.9.4 Homepage: http://www.icinga.org Vcs-Git: git://anonscm.debian.org/pkg-nagios/pkg-icinga-web.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nagios/pkg-icinga-web.git;a=summary Package: icinga-web Architecture: all Depends: dbconfig-common, php5, php5-cli, php5-gd, php5-mysql | php5-pgsql, php5-xsl, php5-json, ucf, ${misc:Depends} # Notice: this will prevent users from using icinga-web 1.10 with a # Icinga IDO lower than 1.10 - also see the appropriate NEWS entry Breaks: icinga-idoutils (<< 1.10) Recommends: icinga-idoutils, apache2 | httpd, mysql-client | postgresql-client Suggests: icinga-doc, nagios-images Description: host and network monitoring system - modern web interface Icinga is a modular monitoring framework for hosts, services, and networks, based on the Nagios project. It is designed to be easy to understand and modify to fit any need. . Features include: * monitoring of network services via ping, SMTP, POP3, HTTP, NNTP, or TCP port; * plugin interface to allow for user-developed service checks; * contact notifications when problems occur and get resolved (via email, pager, or user-defined method) * support for proactive problem resolution (handlers can be defined to be run during service or host events); * web output: current status, notifications, problem history, log file, etc. . This package provides the new web interface to view Icinga monitoring results and send commands to the Icinga Core. Host and service status, history, notifications and status maps are available to keep a check on the health of your network in real time. Package: icinga-web-pnp Architecture: all Depends: icinga-web (= ${source:Version}), pnp4nagios, ${misc:Depends} Description: host and network monitoring system - PNP4Nagios web plugin Icinga is a modular monitoring framework for hosts, services, and networks, based on the Nagios project. It is designed to be easy to understand and modify to fit any need. . Features include: * monitoring of network services via ping, SMTP, POP3, HTTP, NNTP, or TCP port; * plugin interface to allow for user-developed service checks; * contact notifications when problems occur and get resolved (via email, pager, or user-defined method) * support for proactive problem resolution (handlers can be defined to be run during service or host events); * web output: current status, notifications, problem history, log file, etc. . This package provides a plugin for Icinga's new web interface, integrating PNP4Nagios to provide direct access to its data.