mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
system/nagvis: Added (visualization addon for Nagios or Icinga).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
0e26246f8d
commit
31fe02463c
7 changed files with 226 additions and 0 deletions
5
system/nagvis/README
Normal file
5
system/nagvis/README
Normal file
|
@ -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.
|
17
system/nagvis/doinst.sh
Normal file
17
system/nagvis/doinst.sh
Normal file
|
@ -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
|
117
system/nagvis/nagvis.SlackBuild
Normal file
117
system/nagvis/nagvis.SlackBuild
Normal file
|
@ -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}
|
10
system/nagvis/nagvis.info
Normal file
10
system/nagvis/nagvis.info
Normal file
|
@ -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"
|
36
system/nagvis/patches/global.diff
Normal file
36
system/nagvis/patches/global.diff
Normal file
|
@ -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 <lars@vertical-visions.de>
|
||||
*/
|
||||
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/';
|
22
system/nagvis/patches/privacy.diff
Normal file
22
system/nagvis/patches/privacy.diff
Normal file
|
@ -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 @@
|
||||
<p>(<font style="color:#ff0000;">*</font>) New in 1.8</p>
|
||||
<div style="text-align:center;margin-top:20px;">
|
||||
<p><a href="http://www.nagvis.org" style="margin: 0px;" class="nostyle"><img width="88" height="23" border="0" alt="NagVis Logo" src="../general/img/logo-88x23.png" style="margin: 0px;" /></a></p>
|
||||
- <p><a href="http://sourceforge.net" style="margin: 0px;" class="nostyle"><img width="88" height="31" border="0" alt="SourceForge.net Logo" src="http://sflogo.sourceforge.net/sflogo.php?group_id=132019&type=1" style="margin: 0px;" /></a></p>
|
||||
+ <p><a href="http://sourceforge.net" style="margin: 0px;" class="nostyle">SourceForge.net</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
--- 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 @@
|
||||
-->
|
||||
<div style="text-align:center;margin-top:20px;">
|
||||
<p><a href="http://www.nagvis.org" style="margin: 0px;" class="nostyle"><img width="88" height="23" border="0" alt="NagVis Logo" src="../general/img/logo-88x23.png" style="margin: 0px;" /></a></p>
|
||||
- <p><a href="http://sourceforge.net" style="margin: 0px;" class="nostyle"><img width="88" height="31" border="0" alt="SourceForge.net Logo" src="http://sflogo.sourceforge.net/sflogo.php?group_id=132019&type=1" style="margin: 0px;" /></a></p>
|
||||
+ <p><a href="http://sourceforge.net" style="margin: 0px;" class="nostyle">SourceForge.net</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
19
system/nagvis/slack-desc
Normal file
19
system/nagvis/slack-desc
Normal file
|
@ -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:
|
Loading…
Reference in a new issue