wok annotate nagios/receipt @ rev 14466

nagios: add pre_remove
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 27 09:26:24 2013 +0200 (2013-04-27)
parents 00ec8a4f1615
children 3765f181a6d5
rev   line source
erjo@8330 1 # SliTaz package receipt.
erjo@8330 2
erjo@8330 3 PACKAGE="nagios"
erjo@14455 4 VERSION="3.5.0"
erjo@8330 5 CATEGORY="network"
erjo@8330 6 SHORT_DESC="Host and network monitoring"
erjo@8330 7 MAINTAINER="erjo@slitaz.org"
slaxemulator@8889 8 DEPENDS="apache nagios-plugins libpng libjpeg libltdl"
slaxemulator@8889 9 BUILD_DEPENDS="libgd-dev libpng-dev jpeg-dev libtool"
erjo@8330 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@8330 11 WEB_SITE="http://www.nagios.org/"
erjo@8330 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@8330 13 SUGGESTED="nagios-nrpe"
erjo@8330 14
erjo@8330 15 # Rules to configure and make the package.
erjo@8330 16 compile_rules()
erjo@8330 17 {
erjo@8330 18 cd $src
erjo@8330 19 while read patch_file; do
erjo@8330 20 if [ ! -f done.$patch_file ]; then
slaxemulator@9700 21 patch -p1 < $stuff/$patch_file || return 1
erjo@8330 22 touch done.$patch_file
erjo@8330 23 fi
erjo@8330 24 done <<EOT
erjo@8330 25 $PACKAGE-$VERSION-Makefiles.u
erjo@8330 26 EOT
erjo@8330 27 ./configure \
erjo@8330 28 --prefix=/usr \
erjo@8330 29 --infodir=/usr/share/info \
erjo@8330 30 --mandir=/usr/share/man \
erjo@8330 31 --with-nagios-user=nagios \
erjo@8330 32 --with-nagios-group=nagios \
erjo@8330 33 --with-lockfile=/var/run/nagios/nagios.pid \
erjo@8330 34 --with-checkresult-dir=/var/spool/nagios/checkresults \
erjo@8330 35 --sysconfdir=/etc/nagios \
erjo@8330 36 --with-httpd-conf=/etc/apache/conf.d \
erjo@8330 37 --libexecdir=/usr/lib/nagios/plugins \
erjo@8330 38 --sbindir=/usr/lib/nagios/cgi \
erjo@8330 39 --datadir=/usr/share/nagios \
erjo@8700 40 --localstatedir=/var/lib/nagios \
erjo@8330 41 $CONFIGURE_ARGS
erjo@8330 42
erjo@9865 43 sed -i s!HTMLDIR=.*!HTMLDIR=/usr/share/nagios! html/Makefile
erjo@9865 44
erjo@14455 45 #~ make all && make DESTDIR=$PWD/_pkg fullinstall \
erjo@14455 46 #~ && make DESTDIR=$PWD/_pkg install-config
erjo@14455 47 make all && make install \
erjo@14455 48 && make install-config \
erjo@14455 49 && make install-commandmode \
erjo@14455 50 && make install-webconf \
erjo@14455 51 && make install-classicui
erjo@14455 52
erjo@8330 53 }
erjo@8330 54
erjo@8330 55 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8330 56 genpkg_rules()
erjo@8330 57 {
erjo@8330 58 mkdir -p $fs/usr $fs/etc/init.d \
erjo@8700 59 $fs/var/lib/nagios/rw \
erjo@8330 60 $fs/var/run/nagios \
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 {
erjo@8330 86 if ! grep -q nagios $1/etc/passwd; then
erjo@8330 87 echo -n "Adding user/group nagios..."
erjo@8330 88 chroot $1/ addgroup -S nagios
erjo@8330 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
erjo@8330 94 chroot $1/ chown -R nagios.nagios /var/log/nagios \
erjo@8330 95 /var/run/nagios \
erjo@8330 96 /var/spool/nagios \
erjo@8700 97 /var/lib/nagios \
erjo@8330 98 /usr/share/nagios \
erjo@8330 99 /etc/nagios/*
erjo@8330 100
erjo@8330 101
erjo@8700 102 chmod 2775 $1/var/lib/nagios/rw
erjo@8330 103 chroot $1/ addgroup www nagios
erjo@8330 104
erjo@8330 105 # Start Nagios daemon if we are on running system
erjo@8330 106 [ -z $1 ] && /etc/init.d/nagios start
erjo@8330 107
erjo@8330 108 # post_install messges
erjo@8330 109 echo -e "\nTo starts $PACKAGE server you can run :\n"
erjo@8330 110 echo "/etc/init.d/$PACKAGE start"
erjo@8330 111 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
erjo@8330 112 echo -e "Default login/password for the Web GUI is nagiosadmin/nagios"
erjo@8330 113 }
erjo@8330 114
pascal@14466 115 pre_remove()
pascal@14466 116 {
pascal@14466 117 [ -z $1 ] && /etc/init.d/nagios stop
pascal@14466 118 }