]> git.pld-linux.org Git - packages/arpwatch.git/blame - arpwatch-debian_05debian_fhs.patch
- 2.1a15
[packages/arpwatch.git] / arpwatch-debian_05debian_fhs.patch
CommitLineData
e2fb63d0
TP
1Index: arpwatch/Makefile.in
2diff -u arpwatch/Makefile.in:1.1.1.1 arpwatch/Makefile.in:1.1.1.1.10.1
3--- arpwatch/Makefile.in:1.1.1.1 Tue Apr 17 13:31:36 2001
4+++ arpwatch/Makefile.in Tue Apr 17 13:53:29 2001
5@@ -31,7 +31,8 @@
6 # Pathname of directory to install the man page
7 MANDEST = @mandir@
8 # Pathname of directory to install database file
9-ARPDIR = $(prefix)/arpwatch
10+ARPDIR = /var/lib/arpwatch
11+ETHERCODES = /usr/share/arpwatch/ethercodes.dat
12
13 # VPATH
14 srcdir = @srcdir@
15@@ -45,7 +46,8 @@
16 PROG = arpwatch
17 CCOPT = @V_CCOPT@
18 INCLS = -I. @V_INCLS@ -I/usr/include/pcap
19-DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\"
20+DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" \
21+ -DETHERCODES=\"$(ETHERCODES)\"
22
23 # Standard CFLAGS
24 CFLAGS = $(CCOPT) $(DEFS) $(INCLS)
25Index: arpwatch/arpsnmp.8
26diff -u arpwatch/arpsnmp.8:1.1.1.1 arpwatch/arpsnmp.8:1.1.1.1.10.1
27--- arpwatch/arpsnmp.8:1.1.1.1 Tue Apr 17 13:31:36 2001
28+++ arpwatch/arpsnmp.8 Tue Apr 17 13:53:29 2001
29@@ -1,4 +1,4 @@
30-.\" @(#) $Id$ (LBL)
31+.\" @(#) $Id$ (LBL)
32 .\"
33 .\" Copyright (c) 1996, 1997, 1999, 2000
34 .\" The Regents of the University of California. All rights reserved.
35@@ -69,9 +69,9 @@
36 .na
37 .nh
38 .nf
39-/usr/operator/arpwatch - default directory
40+/var/lib/arpwatch - default directory
41 arp.dat - ethernet/ip address database
42-ethercodes.dat - vendor ethernet block list
43+/usr/share/arpwatch/ethercodes.dat - vendor ethernet block list
44 .ad
45 .hy
46 .fi
47Index: arpwatch/arpwatch.8
48diff -u arpwatch/arpwatch.8:1.1.1.1 arpwatch/arpwatch.8:1.1.1.1.10.1
49--- arpwatch/arpwatch.8:1.1.1.1 Tue Apr 17 13:31:36 2001
50+++ arpwatch/arpwatch.8 Tue Apr 17 13:53:29 2001
51@@ -1,4 +1,4 @@
52-.\" @(#) $Id$ (LBL)
53+.\" @(#) $Id$ (LBL)
54 .\"
55 .\" Copyright (c) 1992, 1994, 1996, 1997, 2000
56 .\" The Regents of the University of California. All rights reserved.
57@@ -152,9 +152,9 @@
58 .na
59 .nh
60 .nf
61-/usr/operator/arpwatch - default directory
62+/var/lib/arpwatch - default directory
63 arp.dat - ethernet/ip address database
64-ethercodes.dat - vendor ethernet block list
65+/usr/share/arpwatch/ethercodes.dat - vendor ethernet block list
66 .ad
67 .hy
68 .fi
69Index: arpwatch/arpwatch.h
70diff -u arpwatch/arpwatch.h:1.1.1.1 arpwatch/arpwatch.h:1.1.1.1.10.1
71--- arpwatch/arpwatch.h:1.1.1.1 Tue Apr 17 13:31:36 2001
72+++ arpwatch/arpwatch.h Tue Apr 17 13:53:29 2001
73@@ -1,7 +1,7 @@
74 /* @(#) $Id$ (LBL) */
75
76 #define ARPFILE "arp.dat"
77-#define ETHERCODES "ethercodes.dat"
78+/* #define ETHERCODES "ethercodes.dat" */
79 #define CHECKPOINT (15*60) /* Checkpoint time in seconds */
80
81 #define MEMCMP(a, b, n) memcmp((char *)a, (char *)b, n)
82Index: arpwatch/bihourly
83diff -u arpwatch/bihourly:1.1.1.1 arpwatch/bihourly:1.1.1.1.10.1
530b6344 84--- arpwatch/bihourly.sh.orig 2006-07-28 18:19:45.000000000 +0000
85+++ arpwatch/bihourly.sh 2007-09-16 15:02:47.902987779 +0000
e2fb63d0 86@@ -6,7 +6,7 @@
530b6344 87 PATH=${PATH}:/usr/local/sbin
e2fb63d0
TP
88 export PATH
89 #
90-cd /usr/operator/arpwatch
91+cd /var/lib/arpwatch
92 #
530b6344 93 list="`cat list`"
94 cname="`cat cname`"
95@@ -26,7 +26,7 @@
96
e2fb63d0 97 alist=""
530b6344 98 for r in ${list}; do \
99- ./arpfetch ${r} ${cname} > ${r} 2> ${temp1}
100+ arpfetch ${r} ${cname} > ${r} 2> ${temp1}
101 if [ -s ${temp1} ]; then
102 echo "arpfetch ${r} errors:"
103 xr=${d}/${r}.$$
This page took 0.085825 seconds and 4 git commands to generate.