diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-06-21 09:43:59 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-06-21 09:43:59 +0000 |
commit | d7be9c6cf37f2de101a0ec7c853bbc17e152aec5 (patch) | |
tree | c8506544d0c8ac096b443d31dc1cccfd6e580726 /net-analyzer/neti/files | |
parent | Forgot to add FONT_SUFFIX (Manifest recommit) (diff) | |
download | gentoo-2-d7be9c6cf37f2de101a0ec7c853bbc17e152aec5.tar.gz gentoo-2-d7be9c6cf37f2de101a0ec7c853bbc17e152aec5.tar.bz2 gentoo-2-d7be9c6cf37f2de101a0ec7c853bbc17e152aec5.zip |
Initial import bug #49220
Diffstat (limited to 'net-analyzer/neti/files')
-rw-r--r-- | net-analyzer/neti/files/digest-neti-1.01 | 1 | ||||
-rw-r--r-- | net-analyzer/neti/files/neti-init | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/net-analyzer/neti/files/digest-neti-1.01 b/net-analyzer/neti/files/digest-neti-1.01 new file mode 100644 index 000000000000..b816ccff245f --- /dev/null +++ b/net-analyzer/neti/files/digest-neti-1.01 @@ -0,0 +1 @@ +MD5 4f349c70fc499b6c06ae01516e6748bb neti-1.01.tar.gz 118884 diff --git a/net-analyzer/neti/files/neti-init b/net-analyzer/neti/files/neti-init new file mode 100644 index 000000000000..7b2bf56e3be6 --- /dev/null +++ b/net-analyzer/neti/files/neti-init @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/neti/files/neti-init,v 1.1 2004/06/21 09:43:59 dragonheart Exp $ + +depend() { + need net +} + +start() { + ebegin "Starting netiathome" + start-stop-daemon --start --quiet --exec \ + /usr/bin/tethereal -iany -l -p -tad -V -R"udp||tcp||icmp||igmp" | neti + eend $? +} + +stop() { + ebegin "Stopping netiathome" + start-stop-daemon --stop --quiet --exec /usr/bin/tethereal + eend $? +} |