From 31fe02463cf8054480f246e493cb15c6a39a900b Mon Sep 17 00:00:00 2001 From: Mario Preksavec Date: Sat, 28 Feb 2015 03:51:03 +0700 Subject: system/nagvis: Added (visualization addon for Nagios or Icinga). Signed-off-by: Willy Sudiarto Raharjo --- system/nagvis/README | 5 ++ system/nagvis/doinst.sh | 17 ++++++ system/nagvis/nagvis.SlackBuild | 117 +++++++++++++++++++++++++++++++++++++ system/nagvis/nagvis.info | 10 ++++ system/nagvis/patches/global.diff | 36 ++++++++++++ system/nagvis/patches/privacy.diff | 22 +++++++ system/nagvis/slack-desc | 19 ++++++ 7 files changed, 226 insertions(+) create mode 100644 system/nagvis/README create mode 100644 system/nagvis/doinst.sh create mode 100644 system/nagvis/nagvis.SlackBuild create mode 100644 system/nagvis/nagvis.info create mode 100644 system/nagvis/patches/global.diff create mode 100644 system/nagvis/patches/privacy.diff create mode 100644 system/nagvis/slack-desc diff --git a/system/nagvis/README b/system/nagvis/README new file mode 100644 index 0000000000..0ba3b59838 --- /dev/null +++ b/system/nagvis/README @@ -0,0 +1,5 @@ +nagvis (visualization addon for Nagios or Icinga) + +NagVis is a visualization addon for the well known network managment system +Nagios and Icinga. NagVis can be used to visualize Nagios Data, e.g. to +display IT processes like a mail system or a network infrastructure. diff --git a/system/nagvis/doinst.sh b/system/nagvis/doinst.sh new file mode 100644 index 0000000000..c4c7712d71 --- /dev/null +++ b/system/nagvis/doinst.sh @@ -0,0 +1,17 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/httpd/extra/nagvis.conf.new + +find etc/nagvis -type f -name '*.new' \ + | while read new ; do config $new ; done diff --git a/system/nagvis/nagvis.SlackBuild b/system/nagvis/nagvis.SlackBuild new file mode 100644 index 0000000000..0b2efd6ac7 --- /dev/null +++ b/system/nagvis/nagvis.SlackBuild @@ -0,0 +1,117 @@ +#!/bin/sh + +# Slackware build script for nagvis + +# Copyright 2015 Mario Preksavec, Zagreb, Croatia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + +PRGNAM=nagvis +VERSION=${VERSION:-1.8rc3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Patches thanks to Debian folks! +patch -p1 <$CWD/patches/global.diff +patch -p1 <$CWD/patches/privacy.diff + +# Remove cruft +find . -type f -name '.gitignore' -exec rm {} \; + +# Manual install +mkdir -p $PKG/usr/share/$PRGNAM $PKG/etc/{$PRGNAM/profiles,httpd/extra} \ + $PKG/var/lib/$PRGNAM $PKG/var/cache/$PRGNAM/tmpl/{cache,compile} \ + $PKG/usr/doc/$PRGNAM-$VERSION/{html,scripts,demo/{conf.d,geomap,maps}} +cp -a etc/{conf.d,geomap,maps} $PKG/etc/$PRGNAM +cp -a share $PKG/usr/share/$PRGNAM +cp -a docs/{de_DE,en_US,general} $PKG/usr/doc/$PRGNAM-$VERSION/html +cp -a nagvis-make-admin $PKG/usr/doc/$PRGNAM-$VERSION/scripts +cp -a ChangeLog INSTALL LICENCE README TODO $PKG/usr/doc/$PRGNAM-$VERSION +mv $PKG/usr/share/$PRGNAM/share/userfiles $PKG/var/lib/$PRGNAM + +# Put demo maps with documentation +mv $PKG/etc/$PRGNAM/conf.d/demo* $PKG/usr/doc/$PRGNAM-$VERSION/demo/conf.d +mv $PKG/etc/$PRGNAM/geomap/demo* $PKG/usr/doc/$PRGNAM-$VERSION/demo/geomap +mv $PKG/etc/$PRGNAM/maps/demo* $PKG/usr/doc/$PRGNAM-$VERSION/demo/maps + +# Symlink stupidity +ln -s /var/lib/$PRGNAM/userfiles $PKG/usr/share/$PRGNAM/share/userfiles +ln -s /usr/doc/$PRGNAM-$VERSION/html $PKG/usr/share/$PRGNAM/share/docs +ln -s /usr/doc/$PRGNAM-$VERSION/html $PKG/usr/share/$PRGNAM/docs +ln -s /etc/$PRGNAM $PKG/usr/share/$PRGNAM/etc +ln -s /var/cache/$PRGNAM $PKG/usr/share/$PRGNAM/share/var +ln -s /var/cache/$PRGNAM $PKG/usr/share/$PRGNAM/var + +# Install configuration +sed -e "s#@NAGVIS_WEB@#/$PRGNAM#g" \ + -e "s#@NAGVIS_PATH@#/usr/share/$PRGNAM/share#g" \ + -e "s#@NAGIOS_PATH@/etc#/etc/nagios#g" \ + etc/apache2-$PRGNAM.conf-sample > $PKG/etc/httpd/extra/$PRGNAM.conf.new +sed -e "s#;file_group=\"\"#file_group=\"apache\"#" \ + -e "s#;file_mode=\"660\"#file_mode=\"660\"#" \ + -e "s#;language=\"en_US\"#language=\"en_US\"#" \ + -e "s#;base=\"/usr/local/$PRGNAM/\"#base=\"/usr/share/$PRGNAM/\"#" \ + -e "s#;htmlbase=\"/$PRGNAM\"#htmlbase=\"/$PRGNAM\"#" \ + -e "s#;graphvizpath=\"/usr/bin/\"#graphvizpath=\"/usr/bin/\"#" \ + -e "s#\[rotation_demo\]#;\[rotation_demo\]#" \ + -e "s#interval=15#;interval=15#" \ + -e "s#maps=\"\(.*\)\"#;maps=\"\1\"#" \ + etc/$PRGNAM.ini.php-sample > $PKG/etc/$PRGNAM/$PRGNAM.ini.php.new +cat etc/perms.db-sample > $PKG/etc/$PRGNAM/perms.db.new + +# Adjust apache config +sed -i '/Allow from all/a\ \ Require all granted' \ + $PKG/etc/httpd/extra/$PRGNAM.conf.new + +# Append .new to configs +find $PKG/etc/$PRGNAM -type f ! -name '*.new' -exec mv {} {}.new \; + +# Apache needs permissions +chown -R apache:apache $PKG/etc/$PRGNAM $PKG/var/{cache,lib}/$PRGNAM + +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/nagvis/nagvis.info b/system/nagvis/nagvis.info new file mode 100644 index 0000000000..5c78abd92b --- /dev/null +++ b/system/nagvis/nagvis.info @@ -0,0 +1,10 @@ +PRGNAM="nagvis" +VERSION="1.8rc3" +HOMEPAGE="http://www.nagvis.org/" +DOWNLOAD="http://downloads.sourceforge.net/nagvis/nagvis-1.8rc3.tar.gz" +MD5SUM="d55ebb880333516149339beec269c7f7" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="graphviz" +MAINTAINER="Mario Preksavec" +EMAIL="mario at slackware dot hr" diff --git a/system/nagvis/patches/global.diff b/system/nagvis/patches/global.diff new file mode 100644 index 0000000000..f544dd270e --- /dev/null +++ b/system/nagvis/patches/global.diff @@ -0,0 +1,36 @@ +--- nagvis-1.8rc3/share/server/core/defines/global.php.orig 2015-02-18 01:38:00.696662555 +0100 ++++ nagvis-1.8rc3/share/server/core/defines/global.php 2015-02-18 01:40:33.052563023 +0100 +@@ -79,11 +79,11 @@ + // The last value wins. + // + // Path to the main configuration file +-define('CONST_MAINCFG', '../../../etc/nagvis.ini.php'); +-define('CONST_MAINCFG_CACHE', '../../../var/nagvis-conf'); ++define('CONST_MAINCFG', '/etc/nagvis/nagvis.ini.php'); ++define('CONST_MAINCFG_CACHE', '/var/cache/nagvis/nagvis-conf'); + + // Path to the main configuration conf.d directory +-define('CONST_MAINCFG_DIR', '../../../etc/conf.d'); ++define('CONST_MAINCFG_DIR', '/etc/nagvis/conf.d'); + + // The directory below the NagVis root which is shared by the webserver + define('HTDOCS_DIR', 'share'); +--- nagvis-1.8rc3/share/server/core/classes/GlobalMainCfg.php.orig 2015-01-03 18:19:57.000000000 +0100 ++++ nagvis-1.8rc3/share/server/core/classes/GlobalMainCfg.php 2015-02-18 01:43:31.837753573 +0100 +@@ -1516,11 +1516,11 @@ + * @author Lars Michelsen + */ + private function setPathsByBase($base, $htmlBase) { +- $this->validConfig['paths']['cfg']['default'] = $base.'etc/'; +- $this->validConfig['paths']['mapcfg']['default'] = $base.'etc/maps/'; +- $this->validConfig['paths']['geomap']['default'] = $base.'etc/geomap'; +- $this->validConfig['paths']['profiles']['default'] = $base.'etc/profiles'; +- $this->validConfig['global']['authorisation_group_perms_file']['default'] = $base.'etc/perms.db'; ++ $this->validConfig['paths']['cfg']['default'] = '/etc/nagvis/'; ++ $this->validConfig['paths']['mapcfg']['default'] = '/etc/nagvis/maps/'; ++ $this->validConfig['paths']['geomap']['default'] = '/etc/nagvis/geomap'; ++ $this->validConfig['paths']['profiles']['default'] = '/etc/nagvis/profiles'; ++ $this->validConfig['global']['authorisation_group_perms_file']['default'] = '/etc/nagvis/perms.db'; + + $this->validConfig['paths']['var']['default'] = $base.'var/'; + $this->validConfig['paths']['sharedvar']['default'] = $base.HTDOCS_DIR.'/var/'; diff --git a/system/nagvis/patches/privacy.diff b/system/nagvis/patches/privacy.diff new file mode 100644 index 0000000000..02f85795f6 --- /dev/null +++ b/system/nagvis/patches/privacy.diff @@ -0,0 +1,22 @@ +--- nagvis-1.8rc3/docs/en_US/toc.html.orig 2015-01-03 18:19:57.000000000 +0100 ++++ nagvis-1.8rc3/docs/en_US/toc.html 2015-02-18 01:49:13.318570773 +0100 +@@ -74,7 +74,7 @@ +

(*) New in 1.8

+
+

NagVis Logo

+-

SourceForge.net Logo

++

SourceForge.net

+
+ + +--- nagvis-1.8rc3/docs/de_DE/toc.html.orig 2015-01-03 18:19:57.000000000 +0100 ++++ nagvis-1.8rc3/docs/de_DE/toc.html 2015-02-18 01:50:04.417197043 +0100 +@@ -77,7 +77,7 @@ + --> +
+

NagVis Logo

+-

SourceForge.net Logo

++

SourceForge.net

+
+ + diff --git a/system/nagvis/slack-desc b/system/nagvis/slack-desc new file mode 100644 index 0000000000..e2162094f2 --- /dev/null +++ b/system/nagvis/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +nagvis: nagvis (visualization addon for Nagios or Icinga) +nagvis: +nagvis: NagVis is a visualization addon for the well known network managment +nagvis: system Nagios and Icinga. +nagvis: NagVis can be used to visualize Nagios Data, e.g. to display IT +nagvis: processes like a mail system or a network infrastructure. +nagvis: +nagvis: Homepage: http://www.nagvis.org/ +nagvis: +nagvis: +nagvis: -- cgit v1.2.3