dlan        14/07/17 23:10:12

  Added:                metadata.xml ChangeLog check_mk-1.2.4_p5.ebuild
                        Manifest
  Log:
  bug 447920, initial version added, proxy for @Timo Eissler
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  Changes    Path
1.1                  net-analyzer/check_mk/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
<pkgmetadata>
        <herd>proxy-maintainers</herd>
        <maintainer>
                <email>[email protected]</email>
                <name>Timo Eissler</name>
                <description>maintainer, assign bugs</description>
        </maintainer>
        <longdescription lang="en">
                General purpose Nagios/Icinga plugin for retrieving data.
                Check_MK is a collection of extensions for the 
IT-Monitoring-Kernel of Nagios/Icinga
                and together with this, and ideally also with PNP4Nagios and 
NagVis constitutes
                a complete IT-Monitoring-System.
        </longdescription>
        <use>
                <flag name="agent-only">Install only the check_mk agent.</flag>
                <flag name="logwatch">Install check_mk-agent logwatch 
plugin.</flag>
                <flag name="smart">Install check_mk-agent S.M.A.R.T 
plugin.</flag>
                <flag name="mysql">Install check_mk-agent mysql plugin.</flag>
                <flag name="postgres">Install check_mk-agent postgres 
plugin.</flag>
                <flag name="apache_status">Install check_mk-agent apache-status 
plugin.</flag>
                <flag name="nfsexports">Install check_mk-agent nfsexports 
plugin.</flag>
                <flag name="dmi_sysinfo">Install check_mk-agent dmi_sysinfo 
plugin.</flag>
                <flag name="zypper">Install check_mk-agent zypper plugin.</flag>
                <flag name="livestatus">Enable livestatus.</flag>
                <flag name="wato">Enable check_mk WATO - check_mk's Web 
Administration Tool.</flag>
        </use>
        <upstream>
                
<changelog>http://mathias-kettner.com/check_mk_download.html</changelog>
                <doc>http://mathias-kettner.com/checkmk.html</doc>
        </upstream>
</pkgmetadata>



1.1                  net-analyzer/check_mk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for net-analyzer/check_mk
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/check_mk/ChangeLog,v 1.1 
2014/07/17 23:10:12 dlan Exp $

*check_mk-1.2.4_p5 (17 Jul 2014)

  17 Jul 2014; Yixun Lan <[email protected]> +check_mk-1.2.4_p5.ebuild,
  +files/check_mk-1.2.4p3-setup.sh.patch, +metadata.xml:
  bug 447920, initial version added, proxy for @Timo Eissler




1.1                  net-analyzer/check_mk/check_mk-1.2.4_p5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/check_mk-1.2.4_p5.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/check_mk-1.2.4_p5.ebuild?rev=1.1&content-type=text/plain

Index: check_mk-1.2.4_p5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/check_mk/check_mk-1.2.4_p5.ebuild,v 1.1 
2014/07/17 23:10:12 dlan Exp $

EAPI="5"
MY_P="${P/_p/p}"
MY_PV="${MY_P/check_mk-/}"
S="${WORKDIR}/${MY_P}"

inherit eutils toolchain-funcs

DESCRIPTION="General purpose Nagios/Icinga plugin for retrieving data"
HOMEPAGE="http://mathias-kettner.de/check_mk.html";
SRC_URI="http://mathias-kettner.de/download/${MY_P}.tar.gz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="agent-only apache_status dmi_sysinfo livestatus logwatch mysql
nfsexports oracle postgres smart wato xinetd zypper"
REQUIRED_USE="livestatus? ( !agent-only )
wato? ( !agent-only )"

RDEPEND="${DEPEND}
        ( || ( dev-lang/python:2.6 dev-lang/python:2.7 ) )
        wato? ( app-admin/sudo )
        xinetd? ( sys-apps/xinetd )
        !agent-only? ( || ( net-analyzer/nagios-core net-analyzer/icinga ) )
        !agent-only? ( www-servers/apache www-apache/mod_python )"

src_prepare() {
        # modify setup.sh for gentoo
        epatch "${FILESDIR}"/${PN}-1.2.4p3-setup.sh.patch
}

src_configure() {
        if has_version net-analyzer/nagios-core; then
                export mydaemon=nagios
                export nagpipe=/var/nagios/rw/nagios.cmd
                export check_result_path=/var/nagios/spool/checkresults
                export nagios_status_file=/var/nagios/status.dat
                export rrd_path=/var/nagios/perfdata
        else
                export mydaemon=icinga
                export nagpipe=/var/lib/icinga/rw/icinga.cmd
                export check_result_path=/var/lib/icinga/spool/checkresults
                export nagios_status_file=/var/lib/icinga/status.dat
                export rrd_path=/var/lib/icinga/perfdata
        fi

        export nagiosuser=${mydaemon}
        export nagios_binary=/usr/sbin/${mydaemon}
        export nagios_config_file=/etc/${mydaemon}/${mydaemon}.cfg
        export nagconfdir=/etc/${mydaemon}/check_mk.d
        export nagios_startscript=/etc/init.d/${mydaemon}
        export htpasswd_file=/etc/${mydaemon}/htpasswd.users
        export nagios_auth_name="${mydaemon} Access"
        export docdir=/usr/share/doc/${PF}
        export checkmandir=/usr/share/doc/${PF}/checks
        export check_icmp_path=/usr/lib/nagios/plugins/check_icmp
        export wwwuser=apache
        export wwwgroup=apache
        export apache_config_dir=/etc/apache2/modules.d/

        if use livestatus; then
                export enable_livestatus=yes
        else
                export enable_livestatus=no
        fi

        export STRIPPROG=/bin/true
}

src_compile() {
        DESTDIR=${S} ./setup.sh --yes || die "Error while running setup.sh"

        # compile waitmax
        cd "${S}"/usr/share/check_mk/agents || die "Couldn't cd to 
${S}/usr/share/check_mk/agents"
        if [[ -f waitmax ]]; then
                rm waitmax || die "Couldn't delete precompiled waitmax file"
        fi
        sed -i -e 's#gcc -s -o waitmax waitmax\.c#gcc -o waitmax waitmax.c#' 
"${S}"/usr/share/check_mk/agents/Makefile || die "Couldn't modify remove strip 
from waitmax Makefile"
        emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die 
"Couldn't compile waitmax"
}

src_install() {
        if ! use agent-only; then
                # Apache configuration
                insinto /etc/apache2/modules.d
                doins etc/apache2/modules.d/zzz_check_mk.conf

                if use wato; then
                        # sudoers configuration
                        cat << EOF > "${T}"/check_mk || die
# Needed for WATO - the Check_MK Web Administration Tool
Defaults:apache !requiretty
apache ALL = (root) NOPASSWD: /usr/bin/check_mk --automation *
EOF
                        insinto /etc/sudoers.d
                        doins "${T}"/check_mk
                fi

                # check_mk configuration
                keepdir /etc/check_mk
                insinto /etc/check_mk
                doins etc/check_mk/main.mk
                doins etc/check_mk/main.mk-${MY_PV}
                doins etc/check_mk/multisite.mk
                doins etc/check_mk/multisite.mk-${MY_PV}
                keepdir /etc/check_mk/conf.d
                insinto /etc/check_mk/conf.d
                doins etc/check_mk/conf.d/README
                keepdir /etc/check_mk/conf.d/wato
                touch "${D}"/etc/check_mk/conf.d/distributed_wato.mk
                keepdir /etc/check_mk/multisite.d
                keepdir /etc/check_mk/multisite.d/wato
                touch "${D}"/etc/check_mk/multisite.d/sites.mk

                insinto /etc/${mydaemon}
                doins etc/${mydaemon}/auth.serials

                # Nagios / Icinga check_mk templates
                insinto /etc/${mydaemon}/check_mk.d
                doins etc/${mydaemon}/check_mk.d/check_mk_templates.cfg

                dobin usr/bin/check_mk
                dobin usr/bin/mkp
                insinto /usr/bin
                doins usr/bin/cmk

                # remove compiled agent_modbus
                if [[ -f ${S}/usr/share/doc/${PF}/treasures/modbus/agent_modbus 
]]; then
                        rm 
"${S}"/usr/share/doc/${PF}/treasures/modbus/agent_modbus || die "Couldn't 
remove precompiled agent_modbus"
                fi

                insinto /usr/share/check_mk
                doins -r usr/share/check_mk/*

                keepdir /var/lib/check_mk/autochecks
                keepdir /var/lib/check_mk/cache
                keepdir /var/lib/check_mk/counters
                keepdir /var/lib/check_mk/logwatch
                keepdir /var/lib/check_mk/notify
                keepdir /var/lib/check_mk/packages
                insinto /var/lib/check_mk/packages
                doins var/lib/check_mk/packages/check_mk
                keepdir /var/lib/check_mk/precompiled
                keepdir /var/lib/check_mk/snmpwalks
                keepdir /var/lib/check_mk/tmp
                keepdir /var/lib/check_mk/wato
                keepdir /var/lib/check_mk/web

                # Update check_mk defaults
                sed -i -e "s#^\(check_mk_automation\s*= 'sudo -u\) portage 
\(.*\)\$#\1 ${mydaemon} \2#" "${D}"/usr/share/check_mk/modules/defaults || die 
"Couldn't update check_mk defaults"
                cp "${D}"/usr/share/check_mk/modules/defaults 
"${D}"/usr/share/check_mk/web/htdocs/defaults.py || die "Couldn't copy check_mk 
defaults"

                # Change permissions
                fowners -R ${mydaemon}:apache /etc/${mydaemon}/auth.serials
                fperms -R 0660 /etc/${mydaemon}/auth.serials
                fowners -R ${mydaemon}:${mydaemon} /etc/${mydaemon}/check_mk.d
                fperms -R 0775 /etc/${mydaemon}/check_mk.d
                fowners -R root:apache /etc/check_mk/conf.d/wato
                fperms -R 0775 /etc/check_mk/conf.d/wato
                fowners root:apache /etc/check_mk/conf.d/distributed_wato.mk
                fperms 0664 /etc/check_mk/conf.d/distributed_wato.mk
                fowners -R root:apache /etc/check_mk/multisite.d/wato
                fperms -R 0775 /etc/check_mk/multisite.d/wato
                fowners root:apache /etc/check_mk/multisite.d/sites.mk
                fperms 0664 /etc/check_mk/multisite.d/sites.mk
                fowners root:${mydaemon} /var/lib/check_mk/cache
                fperms 0775 /var/lib/check_mk/counters
                fowners -R root:${mydaemon} /var/lib/check_mk/counters
                fperms 0775 /var/lib/check_mk/notify
                fowners -R root:${mydaemon} /var/lib/check_mk/notify
                fperms 0775 /var/lib/check_mk/logwatch
                fowners -R root:${mydaemon} /var/lib/check_mk/logwatch
                fperms 0775 /var/lib/check_mk/cache
                fowners -R root:${mydaemon} /var/lib/check_mk/cache
                fperms -R 0775 /var/lib/check_mk/tmp
                fowners -R root:apache /var/lib/check_mk/tmp
                fperms -R 0775 /var/lib/check_mk/web
                fowners -R root:apache /var/lib/check_mk/web
                fperms -R 0775 /var/lib/check_mk/wato
                fowners -R root:apache /var/lib/check_mk/wato
        fi

        # Install agent related files
        newbin usr/share/check_mk/agents/check_mk_agent.linux check_mk_agent
        dobin usr/share/check_mk/agents/waitmax

        if use xinetd; then
                insinto /etc/xinetd.d
                newins usr/share/check_mk/agents/xinetd.conf check_mk
        fi

        keepdir /usr/lib/check_mk_agent/local
        keepdir /usr/lib/check_mk_agent/plugins

        # Install Livestatus
        if use livestatus; then
                cat << EOF > "${T}"/livestatus.cfg || die
define module{
        module_name             mk-livestatus
        module_type             neb
        path                    /usr/lib/check_mk/livestatus.o
        args                    /var/lib/${mydaemon}/rw/live
        }
EOF

                insinto /etc/${mydaemon}/modules
                doins "${T}"/livestatus.cfg
                fowners ${mydaemon}:${mydaemon} 
/etc/${mydaemon}/modules/livestatus.cfg

                insinto /usr/lib/check_mk
                doins usr/lib/check_mk/livestatus.o

                dobin usr/bin/unixcat

                keepdir /usr/share/check_mk/livestatus
        fi

        # Documentation
        if ! use agent-only; then
                dodoc -r usr/share/doc/${PF}/*
                docompress -x /usr/share/doc/${PF}/checks/
        else
                dodoc usr/share/doc/${PF}/AUTHORS usr/share/doc/${PF}/COPYING 
usr/share/doc/${PF}/ChangeLog
                docompress
        fi

        # Install the check_mk_agent logwatch plugin
        if use logwatch; then
                insinto /etc/check_mk
                doins usr/share/check_mk/agents/logwatch.cfg
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/mk_logwatch
        fi

        # Install the check_mk_agent smart plugin
        if use smart; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/smart
        fi

        # Install the check_mk_agent mysql plugin
        if use mysql; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/mk_mysql
        fi

        # Install the check_mk_agent postgres plugin
        if use postgres; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/mk_postgres
        fi

        # Install the check_mk_agent apache_status plugin
        if use apache_status; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/apache_status
        fi

        # Install the check_mk_agent zypper plugin
        if use zypper; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/mk_zypper
        fi

        # Install the check_mk_agent oracle plugin
        if use oracle; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/mk_oracle
        fi

        # Install the check_mk_agent nfsexports plugin
        if use nfsexports; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/nfsexports
        fi

        # Install the check_mk_agent dmi_sysinfo plugin
        if use dmi_sysinfo; then
                exeinto /usr/lib/check_mk_agent/plugins
                doexe usr/share/check_mk/agents/plugins/dmi_sysinfo
        fi
}

pkg_postinst() {
        if ! use agent-only; then
                elog "IMPORTANT: Please add the following line to your"
                elog "/etc/${mydaemon}/${mydaemon}.cfg, so that"
                elog "${mydaemon} can load your check_mk configuration."
                elog
                elog "  cfg_dir=/etc/${mydaemon}/check_mk.d"
                elog
        fi
        if use wato; then
                elog "INFO: Your webserver needs write access to"
                elog "/etc/${mydaemon}/htpasswd.users!"
                elog "otherwise wato will not function correctly!"
                elog
                elog "chown ${mydaemon}: /etc/${mydaemon}/htpasswd.users"
                elog "chmod 660 /etc/${mydaemon}/htpasswd.users"
                elog
        fi
}



1.1                  net-analyzer/check_mk/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/Manifest?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/check_mk/Manifest?rev=1.1&content-type=text/plain

Index: Manifest
===================================================================
AUX check_mk-1.2.4p3-setup.sh.patch 1928 SHA256 
d378f521cb802fc16a58e4bbf01db21e266491a747940a5f0890074b4bba648b SHA512 
3eaf65fedbaefe0267823d64842c3bc8a29c0b5996914f89302a30c4bab60d01fb41695134fadef43e005fcbd3e67eacdb6a37d3e157c7613358fc39782fba98
 WHIRLPOOL 
6595ac7abf05f91d11e075652e11c31aefbdbfb798d51a17419484191227f730fdde6d32de3ab7a42bef515060b1cb6a159798cfec696b81d9d8483531604d50
DIST check_mk-1.2.4p5.tar.gz 6626768 SHA256 
e71963542d9d79d98e69aadccb37d05552829acab14665207d6af10415179c21 SHA512 
ca2c06288b91f44f017ebbc45bd6712ddcbebdc4e293598b793ae1ad19ad96814983a30bd66ee2f19940dc1d1439fba2ae2b171dcbe0e670ce1b7d0a8c18d890
 WHIRLPOOL 
7399706ac33246e46795c4c55737043782d8ca12b8e9d03bcd5b4f34f3335baf57d699b4f531e32e732bdb9cb3310a803e93cb5efd593f7986395b88af08939b
EBUILD check_mk-1.2.4_p5.ebuild 9781 SHA256 
93f377acee4e60c3f73f7f38e4160eb6c8e6107b61bf48931479a3039a5165f7 SHA512 
bedaa44b146f7a1573184d408f048ee475125c2921cd5ab837cb950975c3057773fa683094bb35e4b963237f57b6262cd593e649c999e40f51b57318efcabb9d
 WHIRLPOOL 
435fd771a7354ed9d7c31fa40bf6a26990933f122ccfa90d8f275a26dc4958dafe59bbeb45459a312776ac39f7c7ae090b3c6f18da14a42352ee2140a723d974
MISC ChangeLog 345 SHA256 
dcb1e59b4a30ec80a7d45b8a97ae5cfededbe11fa0f38a6106f842845e25bfa5 SHA512 
545e36f4f1201566bae9c2b0582b5a31b5274518a290f8b76b64bb0ecdb557e75c1b9a285680342b60d8fc085ae4b1d396706311fe8fcf971f14641039f6a856
 WHIRLPOOL 
bb21d3bf13c98d23376a177a49769fccb771e0503d01f05f287c14ae2893125ad517db1c96b999bad617a619bb23795866296930f0d2e5858016d78235a59bdf
MISC metadata.xml 1576 SHA256 
99d75463c7fe00ddd0b2eee60ff2c93de45d6e8c0c36192a2bf8a0ecdd4da00d SHA512 
02a53299323623cda71e4e44cf0a61d9b13bf31b23dc9f7d8ba08686e17b5d9b9668cfd6166718f21dd4c82a9883716605627dcf0717a3cd6ab959661fb8fd79
 WHIRLPOOL 
a074011a0b48994879bda736c3b5294051219b73ebbba260a259e9bf6206ae4e8e4b92f5e001dc24f28530a45934c87ab8bbcc7b2b142c8b7accc4fb8a4dc881




Reply via email to