wok annotate nagios/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents 4ed9d8ca19d9
children a78610b2eb47
rev   line source
erjo@8330 1 # SliTaz package receipt.
erjo@8330 2
erjo@8330 3 PACKAGE="nagios"
erkan@20375 4 VERSION="3.5.1"
erjo@8330 5 CATEGORY="network"
erjo@8330 6 SHORT_DESC="Host and network monitoring"
erjo@8330 7 MAINTAINER="erjo@slitaz.org"
pascal@15584 8 LICENSE="GPL2"
erjo@8330 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@8330 10 WEB_SITE="http://www.nagios.org/"
erjo@8330 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@8330 12 SUGGESTED="nagios-nrpe"
erjo@8330 13
pascal@15584 14 DEPENDS="apache nagios-plugins libpng libjpeg libltdl"
pascal@15584 15 BUILD_DEPENDS="libgd-dev libpng-dev jpeg-dev libtool"
pascal@15584 16
erjo@8330 17 # Rules to configure and make the package.
erjo@8330 18 compile_rules()
erjo@8330 19 {
erjo@8330 20 while read patch_file; do
erjo@8330 21 if [ ! -f done.$patch_file ]; then
slaxemulator@9700 22 patch -p1 < $stuff/$patch_file || return 1
erjo@8330 23 touch done.$patch_file
erjo@8330 24 fi
erjo@8330 25 done <<EOT
pascal@20376 26 $PACKAGE-Makefiles.u
erjo@8330 27 EOT
erjo@8330 28 ./configure \
erjo@8330 29 --prefix=/usr \
erjo@8330 30 --infodir=/usr/share/info \
erjo@8330 31 --mandir=/usr/share/man \
erjo@8330 32 --with-nagios-user=nagios \
erjo@8330 33 --with-nagios-group=nagios \
erjo@8330 34 --with-lockfile=/var/run/nagios/nagios.pid \
erjo@8330 35 --with-checkresult-dir=/var/spool/nagios/checkresults \
erjo@8330 36 --sysconfdir=/etc/nagios \
erjo@8330 37 --with-httpd-conf=/etc/apache/conf.d \
erjo@8330 38 --libexecdir=/usr/lib/nagios/plugins \
erjo@8330 39 --sbindir=/usr/lib/nagios/cgi \
erjo@8330 40 --datadir=/usr/share/nagios \
erjo@8700 41 --localstatedir=/var/lib/nagios \
erjo@8330 42 $CONFIGURE_ARGS
erjo@8330 43
erjo@9865 44 sed -i s!HTMLDIR=.*!HTMLDIR=/usr/share/nagios! html/Makefile
erjo@9865 45
pascal@15584 46 #~ make all && make DESTDIR=$DESTDIR fullinstall \
pascal@15584 47 #~ && make DESTDIR=$DESTDIR install-config
erjo@14455 48 make all && make install \
erjo@14455 49 && make install-config \
erjo@14455 50 && make install-commandmode \
erjo@14455 51 && make install-webconf \
erjo@14455 52 && make install-classicui
erjo@14455 53
erjo@8330 54 }
erjo@8330 55
erjo@8330 56 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8330 57 genpkg_rules()
erjo@8330 58 {
erjo@8330 59 mkdir -p $fs/usr $fs/etc/init.d \
erjo@8700 60 $fs/var/lib/nagios/rw \
pascal@14465 61 $fs/var/log/nagios \
erjo@8330 62 $fs/var/spool/nagios/checkresults \
erjo@8330 63 $fs/etc/apache
erjo@8330 64
erjo@14455 65 cp -a $install/etc/apache $fs/etc
erjo@14455 66 cp -a $install/etc/nagios $fs/etc
erjo@14455 67 cp -a $stuff/nagios $fs/etc/init.d
erjo@14455 68 install -o root -g root -m 644 $stuff/htpasswd.users $fs/etc/nagios/
erjo@8330 69
erjo@14455 70 cp -a $install/usr/bin $fs/usr
erjo@14455 71 cp -a $install/usr/lib $fs/usr
erjo@14455 72 cp -a $install/usr/share $fs/usr
erjo@8330 73
erjo@8330 74 # Put doc in separate package
erjo@8330 75 rm -rf $fs/usr/share/nagios/docs
erjo@8330 76
erjo@8330 77 # Fix Apache config for Nagvis
erjo@8330 78 sed -i 's/Options None/Options FollowSymLinks/' $fs/etc/apache/conf.d/nagios.conf
erjo@8700 79
erjo@8700 80 # Fix permissions
erjo@8700 81 chmod 755 $fs/usr/bin/nagios*
erjo@8330 82 }
erjo@8330 83
erjo@8330 84 post_install()
erjo@8330 85 {
pascal@18730 86 if ! grep -q nagios "$1/etc/passwd"; then
erjo@8330 87 echo -n "Adding user/group nagios..."
pascal@18730 88 chroot "$1/" addgroup -S nagios
pascal@18730 89 chroot "$1/" adduser -S -D -H -G nagios nagios
erjo@8330 90 status
erjo@8330 91 fi
erjo@8330 92
erjo@8330 93 # Fix perms for files and directories
pascal@18730 94 chroot "$1/" chown -R nagios.nagios /var/log/nagios \
erjo@8330 95 /var/spool/nagios \
erjo@8700 96 /var/lib/nagios \
erjo@8330 97 /usr/share/nagios \
erjo@8330 98 /etc/nagios/*
erjo@8330 99
erjo@8330 100
pascal@18730 101 chmod 2775 "$1/var/lib/nagios/rw"
pascal@18730 102 chroot "$1/" addgroup www nagios
erjo@8330 103
erjo@8330 104 # Start Nagios daemon if we are on running system
pascal@18730 105 [ "$1" ] || /etc/init.d/nagios start
erjo@8330 106
erjo@8330 107 # post_install messges
erkan@20375 108 echo -e "\nTo start $PACKAGE server you can run :\n"
erjo@8330 109 echo "/etc/init.d/$PACKAGE start"
erjo@8330 110 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
erjo@8330 111 echo -e "Default login/password for the Web GUI is nagiosadmin/nagios"
erjo@8330 112 }
erjo@8330 113
pascal@14466 114 pre_remove()
pascal@14466 115 {
pascal@18730 116 [ "$1" ] || /etc/init.d/nagios stop
pascal@14466 117 }