Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 59234

Summary: New Ebuild: Andutteye Surveillance
Product: Gentoo Linux Reporter: andutt <andutt>
Component: New packagesAssignee: Default Assignee for New Packages <maintainer-wanted>
Status: RESOLVED CANTFIX    
Severity: enhancement CC: netmon, web-apps
Priority: High Keywords: EBUILD
Version: unspecified   
Hardware: All   
OS: Linux   
URL: http://www.andutteye.com
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: Andutteye client software ebuild
Andutteye server software ebuild
Andutteye client software ebuild
Andutteye server software ebuild
Andutteye client version 1.25
Andutteye server version 1.25

Description andutt 2004-08-02 23:58:41 UTC
Im really sorry if im posting this completly wrong! I asked around on the forum and they recommended me to post my created ebuilds here. They are for an surveillance/monitor software for linux. It can be used standalone or in an enterprise environment. Its has many very good features for system administrators that have to handle many linux servers. Look at the official site for more information or send me an email on andutt@andutteye.com. Im pasting in my ebuilds for the client and server below. Contact me for any kind of information or questions. Thanx in advance!

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 andutt 2004-08-02 23:59:54 UTC
Created attachment 36687 [details]
Andutteye client software ebuild

Andutteye client software ebuild
Comment 2 andutt 2004-08-03 00:00:34 UTC
Created attachment 36688 [details]
Andutteye server software ebuild

Andutteye server software ebuild
Comment 3 Seemant Kulleen (RETIRED) gentoo-dev 2004-08-03 00:09:30 UTC
Andreas, we can not accept your ebuilds the way they are presently.  We require that you fill in the header information appropriately, assigning copyright to Gentoo Foundation. Please see:

http://www.gentoo.org/doc/en/gentoo-howto.xml

and:

http://www.gentoo.org/doc/en/ebuild-submit.xml

and:

http://www.gentoo.org/doc/en/ebuild-submit.xml


Please reopen this bug when you have made the necessary changes.
Comment 4 andutt 2004-08-03 00:45:50 UTC
Comment on attachment 36687 [details]
Andutteye client software ebuild

># Copyright 1999-2004 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
>#
>EMVER="1.24-1"
>DESCRIPTION="Andutteye Surveillance client software. Andutteye is a system monitoring surveillance tool."
>SRC_URI="http://andutteye.com/download/andutteye-client-${EMVER}-bin.tar.gz"
>HOMEPAGE="http://www.andutteye.com"
>KEYWORDS="x86 ppc sparc alpha amd64 ia64"
>SLOT="0"
>LICENSE="Free for non-commersiall use. For company and goverment use a commersial licence are needed"
>DEPEND="app-admin/sysstat"
>LICENCE="free-noncomm"
>
>src_unpack() {
>	einfo "Creating Andutteye directorys"
>	diropts -m 0750
>	dodir /opt/andutteye
>	dodir /opt/andutteye/utils
>	dodir /opt/andutteye/var
>	einfo "Unpacking Andutteye Surveillance client"
>	unpack ${A}
>}
>pkg_preinst() {
>	einfo "Installing Andutteye Surveillance software"
>    
>	insinto /etc/init.d
>    doins ${WORKDIR}/etc/init.d/*
>
>	insinto /opt/andutteye/bin
>    doins ${WORKDIR}/opt/andutteye/bin/andutteyed
>
>    insinto /opt/andutteye/utils
>    doins ${WORKDIR}/opt/andutteye/utils/*
>    
>	insinto /opt/andutteye
>    doins ${WORKDIR}/opt/andutteye/LICENSE
>
>
>	USERCHECK=`cat ${ROOT}/etc/passwd |grep andutteye`
>	if [ -z "$USERCHECK" ]
>		then
>		einfo "Creating Andutteye Surveillance useraccount"
>		useradd -g root -m -c "Andutteye surveillance user" andutteye
>	fi
>}
>
>pkg_postinst() {
>	if [ ! -d /opt/andutteye/etc ]
>		then
>		mkdir /opt/andutteye/etc
>	fi
>	if [ ! -d /opt/andutteye/var ]
>		then
>		mkdir /opt/andutteye/var
>	fi
>	chown -R andutteye:root ${ROOT}/opt/andutteye
>	chmod -R 750 ${ROOT}/opt/andutteye
>	chmod 755 ${ROOT}/etc/init.d/andutteyed
>	echo
>	if [ ! -f "/opt/andutteye/etc/andutteyed.conf" ]
>		then
>		einfo "Autodiscovering your system and generating a Andutteye configuration..."
>		${ROOT}/opt/andutteye/bin/andutteyed -genconfig > /dev/null 2>&1
>	fi
>	echo
>	einfo "Andutteye Surveillance client software have been sucessfully installed on your system"
>	einfo "Make sure that you are satisfied with the autogenerated configuration file located"
>	einfo "under /opt/andutteye/etc. Specify emailadresses and recoveryprograms if needed. or add your"
>	einfo "own monitors or programs."
>	echo
>	einfo "If you are using andutteye client in enterprise mode the ANDUTTEYE_SERVER and ANDUTTEYE_PORT"
>	einfo "must be set in the configuration file. To start monitoring execute the start program under"
>	einfo "/etc/init.d called andutteyed with the start argument."
>	echo
>	einfo "Support, information and documentation can be found at the official site."
>	echo
>	echo
>}
Comment 5 andutt 2004-08-03 00:47:31 UTC
Created attachment 36690 [details]
Andutteye client software ebuild

Andutteye client software ebuild
Comment 6 andutt 2004-08-03 00:47:56 UTC
Created attachment 36691 [details]
Andutteye server software ebuild

Andutteye server software ebuild
Comment 7 andutt 2004-08-03 00:49:54 UTC
I have corrected the headinformation as requested. Thanx in advance.
Comment 8 andutt 2004-09-01 02:00:28 UTC
Created attachment 38654 [details]
Andutteye client version 1.25

Andutteye client new version of the software and also corrections in the ebuild
specs after suggestions and corrections of ferringb.
Comment 9 andutt 2004-09-01 02:01:17 UTC
Created attachment 38655 [details]
Andutteye server version 1.25

Andutteye server new version of the software and also corrections in the ebuild
specs after suggestions and corrections of ferringb.
Comment 10 andutt 2004-09-02 04:31:59 UTC
Some input of what the software is used for, if someone like to know. Look at the offical homepage for detailed information. But its a client->server systems monitoring linux systems. Like Nagios or like the commersiall products Patrol,Tivoli,BMC. But my system is written in Perl + PHP so administrators can review the code and see what it actually does. It has many good features a sysadmin will like to have with almost now preconfiguring at all. The users are up and monitoring in about 5-10 minutes.
Comment 11 Markus Ullmann (RETIRED) gentoo-dev 2006-10-08 08:09:02 UTC
Download URL gone, can't test it, feel free to reopen once there is a download available