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