rpms/denyhosts/devel denyhosts-1.1.3-config.patch, NONE, 1.1 .cvsignore, 1.12, 1.13 README.fedora, 1.2, 1.3 denyhosts.spec, 1.17, 1.18 sources, 1.12, 1.13 denyhosts-1.0.0-config.patch, 1.1, NONE

Jason Tibbitts (tibbs) fedora-extras-commits at redhat.com
Sun Nov 20 17:21:51 UTC 2005


Author: tibbs

Update of /cvs/extras/rpms/denyhosts/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20570

Modified Files:
	.cvsignore README.fedora denyhosts.spec sources 
Added Files:
	denyhosts-1.1.3-config.patch 
Removed Files:
	denyhosts-1.0.0-config.patch 
Log Message:
* Fri Nov 18 2005 Jason L Tibbitts III <tibbs at math.uh.edu> - 1.1.3-1
- Update to 1.1.3
- Update README.fedora to document what the package currently does.
- Drop default PURGE_DENY from one year to four weeks.


denyhosts-1.1.3-config.patch:

--- NEW FILE denyhosts-1.1.3-config.patch ---
--- denyhosts.cfg-dist.orig	2005-11-02 08:51:20.000000000 -0600
+++ denyhosts.cfg-dist	2005-11-18 15:03:29.842339029 -0600
@@ -46,13 +46,18 @@
 #            'y' = years
 #
 # never purge:
-PURGE_DENY = 
+#PURGE_DENY = 
 #
 # purge entries older than 1 week
 #PURGE_DENY = 1w
 #
 # purge entries older than 5 days
 #PURGE_DENY = 5d
+#
+# For the default Fedora Extras install, we want timestamping but no
+# expiration (at least by default) so this is deliberately set high.
+# Adjust to taste.
+PURGE_DENY = 4w
 #######################################################################
 
 
@@ -115,7 +120,7 @@
 # Note: when run in daemon mode, this directory should be specified
 # as an absolute path name (eg. /home/foo/denyhosts/data)
 #
-WORK_DIR = denyhosts
+WORK_DIR = /var/lib/denyhosts
 #
 #######################################################################
 
@@ -178,7 +183,7 @@
 # match your email address.  If you do not want to receive these reports
 # leave this field blank (or run with the --noemail option)
 #
-ADMIN_EMAIL = 
+ADMIN_EMAIL = root
 #
 #######################################################################
 


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/denyhosts/devel/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore	11 Oct 2005 19:53:46 -0000	1.12
+++ .cvsignore	20 Nov 2005 17:21:48 -0000	1.13
@@ -1 +1 @@
-DenyHosts-1.1.2.tar.gz
+DenyHosts-1.1.3.tar.gz


Index: README.fedora
===================================================================
RCS file: /cvs/extras/rpms/denyhosts/devel/README.fedora,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.fedora	16 Aug 2005 03:30:56 -0000	1.2
+++ README.fedora	20 Nov 2005 17:21:49 -0000	1.3
@@ -10,18 +10,20 @@
   chkconfig denyhosts on
 
 
-By default it will process your logs every ten minutes.  You can
-change the interval by editing /etc/cron.d/denyhosts.  You can see a
-description of the file format by running:
+By default denyhosts runs continuously waking up to process your logs
+every thirty seconds.  However, you can choose to have it run
+periodically via cron.  To do so, edit /etc/sysconfig/denyhosts and
+change the "DAEMON=yes" line to "DAEMON=no".  Then edit
+/etc/cron.d/denyhosts, uncomment the appropriate lines and adjust the
+interval at which it runs to your choosing.  You can see a description
+of the file format by running:
 
   man 5 crontab
 
 
 By default, DenyHosts is set up to purge old block entries, but only
-after one year.  If you wish to adjust this, edit /etc/denyhosts.conf
-and look for "PURGE_DENY".  The purge procedure is run daily at 5AM.
-To adjust this frequency, edit /etc/cron.d/denyhosts.
-
+after four weeks.  If you wish to adjust this, edit /etc/denyhosts.conf
+and look for "PURGE_DENY".
 
 DenyHosts will process only your current logfile (/var/log/secure).
 If you want to incorporate an old logfile (in this example,


Index: denyhosts.spec
===================================================================
RCS file: /cvs/extras/rpms/denyhosts/devel/denyhosts.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- denyhosts.spec	11 Oct 2005 19:53:46 -0000	1.17
+++ denyhosts.spec	20 Nov 2005 17:21:49 -0000	1.18
@@ -1,5 +1,5 @@
 Name:           denyhosts
-Version:        1.1.2
+Version:        1.1.3
 release:	1%{?dist}
 Summary:        A script to help thwart ssh server attacks
 
@@ -13,7 +13,7 @@
 Source4:	denyhosts.sysconfig
 Source5:	denyhosts.logrotate
 Source6:	README.fedora
-Patch0:		denyhosts-1.0.0-config.patch
+Patch0:		denyhosts-1.1.3-config.patch
 Patch1:		denyhosts-0.9.8-setup.patch
 Patch2:		denyhosts-1.0.0-daemon-control.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -125,6 +125,11 @@
 %{_bindir}/denyhosts-control
 
 %changelog
+* Fri Nov 18 2005 Jason L Tibbitts III <tibbs at math.uh.edu> - 1.1.3-1
+- Update to 1.1.3
+- Update README.fedora to document what the package currently does.
+- Drop default PURGE_DENY from one year to four weeks.
+
 * Tue Oct 11 2005 Jason L Tibbitts III <tibbs at math.uh.edu> - 1.1.2-1
 - Update to 1.1.2
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/denyhosts/devel/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources	11 Oct 2005 19:53:46 -0000	1.12
+++ sources	20 Nov 2005 17:21:49 -0000	1.13
@@ -1 +1 @@
-d2c6f00243c0fcd0f4498c3c71a1074e  DenyHosts-1.1.2.tar.gz
+bacc9e55a17572b832a19035129f7c12  DenyHosts-1.1.3.tar.gz


--- denyhosts-1.0.0-config.patch DELETED ---




More information about the fedora-extras-commits mailing list