Browse Source

Tobias Schmidt:


			
			
				rocklinux
			
			
		
Tobias Schmidt 20 years ago
parent
commit
6ecc864a7d
4 changed files with 92 additions and 0 deletions
  1. +9
    -0
      package/tschmidt/arpwatch/Makefile.in.patch
  2. +1
    -0
      package/tschmidt/arpwatch/arpwatch.conf
  3. +44
    -0
      package/tschmidt/arpwatch/arpwatch.desc
  4. +38
    -0
      package/tschmidt/arpwatch/arpwatch.init

+ 9
- 0
package/tschmidt/arpwatch/Makefile.in.patch

@ -0,0 +1,9 @@
--- arpwatch-2.1a4/Makefile.in
+++ arpwatch-2.1a4/Makefile.in
34c34
< ARPDIR = $(prefix)/arpwatch
---
> ARPDIR = $(prefix)/etc
113a114,115
> @mkdir -p $(ARPDIR)
> @cp -f arp.dat $(ARPDIR)/

+ 1
- 0
package/tschmidt/arpwatch/arpwatch.conf

@ -0,0 +1 @@
postmake="install_init arpwatch $confdir/arpwatch.init"

+ 44
- 0
package/tschmidt/arpwatch/arpwatch.desc

@ -0,0 +1,44 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/tschmidt/arpwatch/arpwatch.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] monitors MAC/IP pairings
[T] Arpwatch is a tool that monitors ethernet activity and keeps a
[T] database of ethernet/ip address pairings. It also reports certain
[T] changes via email.
[T] Arpwatch messages you if someone tries ARP-Poision-Routing on your host.
[U] http://www.securityfocus.com/tools/142
[A] LBL Network Research Group
[M] Tobias Schmidt <nazgul@uvip-media.de>
[C] extra/tool
[L] GPL
[S] Stable
[V] 2.1a4
[P] X -----5---9 800.000
[D] 1680384826 arpwatch.tar.Z http://www.securityfocus.com/data/tools/

+ 38
- 0
package/tschmidt/arpwatch/arpwatch.init

@ -0,0 +1,38 @@
#!/bin/sh
#
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/tschmidt/arpwatch/arpwatch.init
# ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
#
# Desc: ARP-Monitor
# Runlevel: 90 rcX
#
main_begin
block_begin(start, `Starting arpwatch')
check(`D_prefix/sbin/arpwatch')
block_end
block_begin(stop, `Stopping arpwatch')
check(`killall -KILL D_prefix/sbin/arpwatch')
block_end
main_end

Loading…
Cancel
Save