1 |
# $Id: smeserver-arpwatch.spec,v 1.3 2020/10/12 10:14:09 jcrisp Exp $ |
2 |
# Authority: vip-ire |
3 |
# Name: Daniel Berteaud |
4 |
|
5 |
Summary: Arpwatch is a tool that monitors ethernet activity |
6 |
%define name smeserver-arpwatch |
7 |
Name: %{name} |
8 |
%define version 0.3 |
9 |
%define release 2 |
10 |
Version: %{version} |
11 |
Release: %{release}%{?dist} |
12 |
License: GPL |
13 |
Group: Monitoring |
14 |
Source: %{name}-%{version}.tar.gz |
15 |
#Patch0: smeserver-arpwatch-somepatch.patch |
16 |
|
17 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
18 |
BuildArchitectures: noarch |
19 |
|
20 |
BuildRequires: e-smith-devtools |
21 |
|
22 |
Requires: e-smith-base |
23 |
Requires: arpwatch |
24 |
|
25 |
%description |
26 |
Arpwatch is a tool that monitors ethernet activity and keeps |
27 |
a database of ethernet/ip address pairings. |
28 |
It also reports certain changes via email. |
29 |
Arpwatch uses libpcap, a system-independent interface for |
30 |
user-level packet capture. |
31 |
|
32 |
%changelog |
33 |
* Wed Nov 04 2020 Brian Read <brianr@bjsystems.co.uk> 0.3-2.sme |
34 |
- Add in systemd startup for arpwatch to spec file [SME: 11026] |
35 |
|
36 |
* Mon Oct 12 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 0.3-1.sme |
37 |
- based on work by Brian Read [SME: 11026] |
38 |
- Build for Koozali SME v10 |
39 |
- remove createlinks safetouch to fix conflict |
40 |
- remove /var/lib/arpwatch lines in genfilelist |
41 |
|
42 |
* Mon Sep 07 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 0.2-3.sme |
43 |
- changed the user pcap to arpwatch [SME: 8429] |
44 |
|
45 |
* Mon Jun 16 2014 JP Pialasse <tests@pialasse.com> 0.2-1.sme |
46 |
- initial import to SME9 contribs |
47 |
|
48 |
* Tue Mar 03 2009 Daniel B. <daniel@firewall-services.com> [0.1-2] |
49 |
- Add e-smith-devtools as a build dependency |
50 |
|
51 |
* Tue Jan 27 2009 Daniel B. <daniel@firewall-services.com> [0.1-1] |
52 |
- Service not supervised (as the only option to disable forking is -d |
53 |
which also disable email alerts) |
54 |
|
55 |
* Tue Jan 27 2009 Daniel B. <daniel@firewall-services.com> [0.1-0] |
56 |
- Initial release |
57 |
|
58 |
%prep |
59 |
|
60 |
%setup -q -n %{name}-%{version} |
61 |
#%patch0 -p1 |
62 |
|
63 |
%build |
64 |
perl createlinks |
65 |
|
66 |
%install |
67 |
/bin/rm -rf $RPM_BUILD_ROOT |
68 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
69 |
/bin/rm -f %{name}-%{version}-filelist |
70 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
71 |
> %{name}-%{version}-filelist |
72 |
|
73 |
%files -f %{name}-%{version}-filelist |
74 |
%defattr(-,root,root) |
75 |
|
76 |
%clean |
77 |
rm -rf $RPM_BUILD_ROOT |
78 |
%pre |
79 |
|
80 |
%post |
81 |
systemctl enable arpwatch |
82 |
systemctl start arpwatch |
83 |
|
84 |
%preun |
85 |
if [ $1 -eq 0 ] ; then |
86 |
/sbin/e-smith/db configuration setprop arpwatch status disabled |
87 |
/etc/init.d/arpwatch stop |
88 |
fi |
89 |
|
90 |
true |
91 |
|