diff options
author | Dean Bailey <alron@gentoo.org> | 2003-02-12 06:44:59 +0000 |
---|---|---|
committer | Dean Bailey <alron@gentoo.org> | 2003-02-12 06:44:59 +0000 |
commit | 61f4af566ab3f135aeaedc2aca3dc8d95f21f363 (patch) | |
tree | abb0cc50753010cc2a57105131055142ea8bd56f | |
parent | formatting fix. (diff) | |
download | gentoo-2-61f4af566ab3f135aeaedc2aca3dc8d95f21f363.tar.gz gentoo-2-61f4af566ab3f135aeaedc2aca3dc8d95f21f363.tar.bz2 gentoo-2-61f4af566ab3f135aeaedc2aca3dc8d95f21f363.zip |
Updated due to a fix in nagios-core which addressed bug #14731
-rw-r--r-- | net-analyzer/nagios/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/nagios/nagios-1.0-r1.ebuild | 39 |
2 files changed, 46 insertions, 1 deletions
diff --git a/net-analyzer/nagios/ChangeLog b/net-analyzer/nagios/ChangeLog index 8552b6775ca5..99f500baef45 100644 --- a/net-analyzer/nagios/ChangeLog +++ b/net-analyzer/nagios/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for net-analyzer/nagios # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios/ChangeLog,v 1.6 2003/01/15 19:51:53 alron Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios/ChangeLog,v 1.7 2003/02/12 06:44:59 alron Exp $ +*nagios-1.0-r1 (11 Feb 2003) + 11 Feb 2003; Dean Bailey <alron@gentoo.org> nagios-1.0-r1 : + Made changes to have the ebuild pull the latest installable + version of the nagios suite. Did this because of a small + nagios-core update which addresses bug #14731 + 15 Jan 2003; Dean Bailey <alron@gentoo.org> nagios-1.0 : Changed ~x86 to x86 and added sparc and ppc keywords diff --git a/net-analyzer/nagios/nagios-1.0-r1.ebuild b/net-analyzer/nagios/nagios-1.0-r1.ebuild new file mode 100644 index 000000000000..5143b7ff5655 --- /dev/null +++ b/net-analyzer/nagios/nagios-1.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios/nagios-1.0-r1.ebuild,v 1.1 2003/02/12 06:44:59 alron Exp $ + +DESCRIPTION="Nagios $PV - merge this to pull install all of the nagios packages" +HOMEPAGE="http://www.nagios.org/" +RDEPEND=">=net-analyzer/nagios-core-1.0 + >=net-analyzer/nagios-plugins-1.3.0_beta2 + >=net-analyzer/nagios-nrpe-1.7 + >=net-analyzer/nagios-nsca-2.2 + >=net-analyzer/nagios-imagepack-1.0" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~sparc ~ppc" +pkg_postinst() { + einfo + einfo "Remember to edit the config files in /etc/nagios" + einfo "Also, if you want nagios to start at boot time" + einfo "remember to execute rc-update add nagios default" + einfo + einfo "To have nagios visable on the web, please do the following:" + einfo "1. Execute the command:" + einfo " \"ebuild /var/db/pkg/net-analyzer/nagios-core-${PV}-r1/nagios-core-${PV}-r1.ebuild config\"" + einfo " 2. Edit /etc/conf.d/apache and add \"-D NAGIOS\"" + einfo + einfo "That will make nagios's web front end visable via" + einfo "http://localhost/nagios/" + einfo + einfo "The Apache config file for nagios will be in" + einfo "/etc/apache/conf/addon-modules/ with the name of" + einfo "nagios.conf." + einfo "Also, if your kernel has /proc protection, nagios" + einfo "will not be happy as it relies on accessing the proc" + einfo "filesystem." + einfo +} + + |