/[smecontribs]/rpms/smeserver-denyhosts/contribs7/smeserver-denyhosts.spec
ViewVC logotype

Diff of /rpms/smeserver-denyhosts/contribs7/smeserver-denyhosts.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.2 by unnilennium, Tue Apr 22 02:07:45 2008 UTC Revision 1.20 by snetram, Mon Feb 16 20:32:12 2009 UTC
# Line 1  Line 1 
1  # $Id: smeserver-denyhosts.spec,v 1.1 2008/04/21 17:25:59 slords Exp $  # $Id: smeserver-denyhosts.spec,v 1.19 2009/01/31 07:44:45 snetram Exp $
2  # Authority: unnilennium  # Authority: unnilennium
3  # Name: Jean-Philippe Pialasse  # Name: Jean-Philippe Pialasse
4    
5  Summary: smeserver-denyhosts  Summary: smeserver-denyhosts
6  %define name smeserver-denyhosts  %define name smeserver-denyhosts
   
 # Variable representing installation directories:  
 %define installdir_denyhosts /etc/e-smith/web/functions  
 %define installdir_denyhosts_python /usr/lib/python2.3/site-packages/DenyHosts  
   
 Name: %{name}  
7  %define version 2.6  %define version 2.6
8  %define release 0.5  %define release 16
9    Name:                   %{name}
10  Version:                %{version}  Version:                %{version}
11  Release:                %{release}%{?dist}  Release:                %{release}%{?dist}
12  License:                GPL  License:                GPL
13  Group:                  Applications/System  Group:                  Applications/System
14  Source:                 %{name}-%{version}.tgz  Source:                 %{name}-%{version}.tgz
15    Patch0:                 smeserver-denyhosts-2.6-locale-2008-04-22.patch
16    Patch1:                 smeserver-denyhosts-2.6-locale-2008-04-23.patch
17    Patch2:                 smeserver-denyhosts-2.6-patch2.patch
18    Patch3:                 smeserver-denyhosts-2.6-patch3.patch
19    Patch4:                 smeserver-denyhosts-2.6-add2general.patch
20    Patch5:                 smeserver-denyhosts-2.6-locale-2008-05-05.patch
21    Patch6:                 smeserver-denyhosts-2.6-locale-2008-05-21.patch
22    Patch7:                 smeserver-denyhosts-2.6-locale-2008-06-25.patch
23    Patch8:                 smeserver-denyhosts-2.6-locale-2008-07-01.patch
24    Patch9: smeserver-denyhosts-2.6-locale-2008-10-15.patch
25    Patch10: smeserver-denyhosts-2.6-locale-2008-11-05.patch
26    Patch11: smeserver-denyhosts-2.6-locale-2009-01-31.patch
27    Patch12: smeserver-denyhosts-2.6-fixTypo.patch
28  Url:                    http://smeserver.pialasse.com/  Url:                    http://smeserver.pialasse.com/
29  BuildRoot:              /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot:              /var/tmp/%{name}-%{version}-%{release}-buildroot
30  BuildArch:              noarch  BuildArch:              noarch
 Patch1:                 smeserver-denyhosts-2.6-patch1.patch  
31  BuildRequires:          e-smith-devtools >= 1.13.1-03  BuildRequires:          e-smith-devtools >= 1.13.1-03
32  Requires:               smeserver-release >= 7.0  Requires:               smeserver-release >= 7.0
33    Requires:               denyhosts >= 2.6
34    Requires:               e-smith-formmagick >= 1.4.0-12
35    
36  %description  %description
37  DenyHosts is a Python script that analyzes the sshd server log  Integration package to mesh denyhosts with SME Server.
 messages to determine which hosts are attempting to hack into your  
 system. It also determines what user accounts are being targeted. It  
 keeps track of the frequency of attempts from each host and, upon  
 discovering a repeated attack host, updates the /etc/hosts.deny file  
 to prevent future break-in attempts from that host.  Email reports can  
 be sent to a system admin. http://denyhosts.sourceforge.net/  
38    
39  %prep  %prep
40  %setup  %setup
41    %patch0 -p1
42  %patch1 -p1  %patch1 -p1
43    %patch2 -p1
44    %patch3 -p1
45    %patch4 -p1
46    %patch5 -p1
47    %patch6 -p1
48    %patch7 -p1
49    %patch8 -p1
50    %patch9 -p1
51    %patch10 -p1
52    %patch11 -p1
53    %patch12 -p1
54    
55  %build  %build
56  perl createlinks  /usr/bin/perl createlinks
   
 mkdir -p          root/share/denyhosts/data  
 mkdir -p          root/etc/e-smith/db/configuration/defaults/denyhosts  
 echo "service"  > root/etc/e-smith/db/configuration/defaults/denyhosts/type  
 echo "disabled"  > root/etc/e-smith/db/configuration/defaults/denyhosts/status  
   
57    
58  %install  %install
59  /bin/rm -rf $RPM_BUILD_ROOT  /bin/rm -rf $RPM_BUILD_ROOT
# Line 55  echo "disabled"  > root/etc/e-smith/db/c Line 63  echo "disabled"  > root/etc/e-smith/db/c
63    
64  %files -f %{name}-%{version}-filelist  %files -f %{name}-%{version}-filelist
65  %defattr(-,root,root,-)  %defattr(-,root,root,-)
 %defattr(-,root,root)  
 %attr(0644,root,root) %config(noreplace) /etc/hosts.evil  
 %attr(0644,root,root) %config(noreplace) /usr/share/denyhosts/data/allowed-hosts  
 %{installdir_denyhosts}/denyhosts  
66    
67  %clean  %clean
68  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
69    
70    %post
71    touch /etc/hosts.deny_ssh
72    
73  %changelog  %changelog
74  * Mon Apr 21 2008 JP PIALASSE tests@pialasse.com 2.6-05  * Mon Feb 16 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-16
75  - corrections to be added on contribs.org  - Fix typo in en-us locale [SME: 4932]
76  - bug for whiteliste, file is moved to /usr/share/denyhosts/data/ [SME 4200]  
77  - HTML bug corrected in the server-manager  * Sat Jan 31 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-15
78    - Apply 31 Jan 2009 locale patch [SME: 4951]
79    
80    * Wed Nov  5 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-14
81    - Apply  5 Nov 2008 locale patch
82    
83    * Wed Oct 15 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-13
84    - Apply 15 Oct 2008 locale patch
85    
86    * Tue Jul 1 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-12
87    - Apply 1 July 2008 locale patch
88    
89    * Wed Jun 25 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-11
90    - Actually apply 25 Jun 2008 locale patch, forgot to commit patch
91    
92    * Thu May 21 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-10
93    - Apply 21 May 2008 locale patch
94    
95    * Mon May 5 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-9
96    - Apply 5 May 2008 locale patch
97    
98    * Sun Apr 27 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-8
99    - Add common <base> tags to e-smith-formmagick's general
100    - Fix referrals to the SME Server Bug Tracker
101    
102    * Tue Apr 24 2008 JP PIALASSE <tests@pialasse.Com> 2.6-7
103    - stop when disable service [SME: 4528]
104    - adding local
105    
106    * Wed Apr 23 2008 JP PIALASSE <tests@pialasse.com> 2.6-6
107    - Added 23 APril 2008 local patch
108    - changed fragment SMTP_FROM to add domain name
109    - changed fragment ADMIN_EMAIL
110    - added some FM in local to translate
111    
112    * Tue Apr 22 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.6-5
113    - Added 22 April 2008 locale patch
114    
115  * Wed Apr 02 2008 JP PIALASSE tests@pialasse.com 2.6-04  * Tue Apr 22 2008 Shad L. Lords <slords@mail.com> 2.6-4.sme
116  - minor bug changes  - Pull out all denyhosts stuff
117    - Template needed files
118    - Add database defaults
119    - Split panel to use correct FormMagick style
120    
121  * Mon Mar 31 2008 JP PIALASSE tests@pialasse.com  2.6-0.3  * Mon Mar 31 2008 JP PIALASSE tests@pialasse.com  2.6-0.3
122  - bug in install scriptlet corrected  - bug in install scriptlet corrected


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed