Changes between Version 1 and Version 2 of SoftWare/NagiosVelvice


Ignore:
Timestamp:
Jun 26, 2018, 3:25:47 PM (6 years ago)
Author:
g7moreau
Comment:

First version...

Legend:

Unmodified
Added
Removed
Modified
  • SoftWare/NagiosVelvice

    v1 v2  
    11= SoftWare / !NagiosVelvice - Nagios Velvice Alert Panel =
     2
     3== Description ==
     4
     5Nagios VELVICE is an acronym for "Nagios leVEL serVICE status".
     6
     7The tool is quite effective and tries to keep things simple
     8but easily configurable for your site like a swiss army knife.
     9Everything is configured in a YAML file.
     10
     11All the command help and description is on the online manual
     12[http://servforge.legi.grenoble-inp.fr/pub/soft-trokata/nagios-velvice/velvice.html velvice]
     13
     14
     15== Debian package ==
     16
     17Debian is a GNU/Linux distribution.
     18Debian (and certainly Ubuntu) package for amd64 arch could be download on: http://servforge.legi.grenoble-inp.fr/pub/soft-trokata/nagios-velvice/download.
     19
     20You can then install it with
     21
     22{{{
     23sudo dpkg -i nagios3-velvice*_amd64.deb
     24}}}
     25(just replace * with the version you have donwloaded).
     26
     27
     28== Software repository ==
     29
     30All code is under '''free license'''.
     31Scripts in `bash` are under GPL version 3 or later (http://www.gnu.org/licenses/gpl.html),
     32the `perl` scripts are under the same license as `perl` itself ie the double license GPL and Artistic License (http://dev.perl.org/licenses/artistic.html).
     33
     34All sources are available on the LEGI forge: http://servforge.legi.grenoble-inp.fr/svn/soft-trokata/trunk/nagios-velvice
     35
     36The sources are managed via subversion (http://subversion.tigris.org/).
     37It is very easy to stay synchronized with these sources
     38
     39 * initial recovery
     40{{{
     41svn checkout http://servforge.legi.grenoble-inp.fr/svn/soft-trokata/trunk/nagios-velvice soft-nagios-velvice
     42}}}
     43 * the updates thereafter
     44{{{
     45svn update
     46}}}
     47
     48It is possible to have access to writing at the forge on reasoned request to [mailto:Gabriel.Moreau(A)legi.grenoble-inp.fr Gabriel Moreau].
     49For issues of administration time and security, the forge is not writable without permission.
     50For the issues of decentralization of the web, autonomy and non-allegiance to the ambient (and North American) centralism, we use our own forge...
     51
     52You can propose an email patch of a particular file via the `diff` command.
     53Note that `svn` defaults to the unified format (`-u`).
     54Two examples:
     55{{{
     56diff -u nagios-velvice.org nagios-velvice.new > nagios-velvice.patch
     57svn diff nagios-velvice > nagios-velvice.patch
     58}}}
     59We apply the patch (after having read and read it again) via the command
     60{{{
     61patch -p0 < nagios-velvice.patch
     62}}}