diff options
author | 2004-03-04 19:02:51 +0000 | |
---|---|---|
committer | 2004-03-04 19:02:51 +0000 | |
commit | c21f0d0efa02b2842434cad4cd00bed199f918b2 (patch) | |
tree | 299e36f70d191f6a0d5900f4fb07b06f7df91a72 /net-analyzer | |
parent | Removed previous development release, please use the latest ebuild instead. (... (diff) | |
download | gentoo-2-c21f0d0efa02b2842434cad4cd00bed199f918b2.tar.gz gentoo-2-c21f0d0efa02b2842434cad4cd00bed199f918b2.tar.bz2 gentoo-2-c21f0d0efa02b2842434cad4cd00bed199f918b2.zip |
gpl2, forget the later
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nessus-core/files/nessusd-r6 | 24 | ||||
-rw-r--r-- | net-analyzer/p0f/files/p0f-1.8.2.rc | 7 | ||||
-rw-r--r-- | net-analyzer/portmon/files/portmon.init | 28 |
3 files changed, 26 insertions, 33 deletions
diff --git a/net-analyzer/nessus-core/files/nessusd-r6 b/net-analyzer/nessus-core/files/nessusd-r6 index b6401dee1c20..42b85ca9180a 100644 --- a/net-analyzer/nessus-core/files/nessusd-r6 +++ b/net-analyzer/nessus-core/files/nessusd-r6 @@ -1,26 +1,20 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/files/nessusd-r6,v 1.2 2003/02/14 22:57:36 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/files/nessusd-r6,v 1.3 2004/03/04 18:59:33 vapier Exp $ depend() { need net } - start() { - - ebegin "Starting nessusd..." - start-stop-daemon --start --quiet --exec /usr/sbin/nessusd -- -D - eend $? + ebegin "Starting nessusd" + start-stop-daemon --start --quiet --exec /usr/sbin/nessusd -- -D + eend $? } stop() { - - ebegin "Stop nessusd..." - start-stop-daemon --stop --quiet --exec /usr/sbin/nessusd - eend $? + ebegin "Stop nessusd" + start-stop-daemon --stop --quiet --exec /usr/sbin/nessusd + eend $? } - - - diff --git a/net-analyzer/p0f/files/p0f-1.8.2.rc b/net-analyzer/p0f/files/p0f-1.8.2.rc index 97b7901be3ad..d115cda5712e 100644 --- a/net-analyzer/p0f/files/p0f-1.8.2.rc +++ b/net-analyzer/p0f/files/p0f-1.8.2.rc @@ -1,8 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/files/p0f-1.8.2.rc,v 1.2 2003/02/14 22:57:50 vapier Exp $ - +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/files/p0f-1.8.2.rc,v 1.3 2004/03/04 19:02:51 vapier Exp $ start() { ebegin "Starting p0f" diff --git a/net-analyzer/portmon/files/portmon.init b/net-analyzer/portmon/files/portmon.init index 0cedcfc67536..9a2a5e410bbf 100644 --- a/net-analyzer/portmon/files/portmon.init +++ b/net-analyzer/portmon/files/portmon.init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portmon/files/portmon.init,v 1.1 2003/07/29 01:36:45 gregf Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portmon/files/portmon.init,v 1.2 2004/03/04 19:02:51 vapier Exp $ # configuration is done in /etc/pormon.sh @@ -10,21 +10,21 @@ depend() { } checkconfig() { - if [ ! -e /etc/portmon/portmon.hosts ]; then - error " You need /etc/portmon/portmaon.hosts to run portmon." - return 1 - fi + if [ ! -e /etc/portmon/portmon.hosts ]; then + error " You need /etc/portmon/portmaon.hosts to run portmon." + return 1 + fi } start() { - checkconfig || return 1 - ebegin "Starting portmon" - start-stop-daemon --start --quiet --exec /usr/sbin/portmon -- -d -c /etc/portmon/portmon.hosts - eend $? + checkconfig || return 1 + ebegin "Starting portmon" + start-stop-daemon --start --quiet --exec /usr/sbin/portmon -- -d -c /etc/portmon/portmon.hosts + eend $? } stop() { - checkconfig || return 1 - ebegin "Staring portmon" - start-stop-daemon --stopt --quiet --exec /usr/sbin/portmon + checkconfig || return 1 + ebegin "Staring portmon" + start-stop-daemon --stopt --quiet --exec /usr/sbin/portmon } |