[Da-tools-commits] ./debian/userdir-ldap-cgi r113: Slightly change find call in cronjob

Peter Palfrader peter at palfrader.org
Tue Sep 16 14:42:09 UTC 2008


------------------------------------------------------------
revno: 113
committer: Peter Palfrader <peter at palfrader.org>
branch nick: userdir-ldap-cgi
timestamp: Tue 2008-09-16 16:42:09 +0200
message:
  Slightly change find call in cronjob
modified:
  debian/changelog
  debian/cron.daily
-------------- next part --------------
=== modified file 'debian/changelog'
--- a/debian/changelog	2008-09-16 14:39:55 +0000
+++ b/debian/changelog	2008-09-16 14:42:09 +0000
@@ -1,3 +1,9 @@
+userdir-ldap-cgi (0.3.21) unstable; urgency=low
+
+  * Slightly change find call in cronjob.
+
+ -- Peter Palfrader <weasel at debian.org>  Tue, 16 Sep 2008 16:41:50 +0200
+
 userdir-ldap-cgi (0.3.20) unstable; urgency=low
 
   * Install a cron job to get rid of old sessions.

=== modified file 'debian/cron.daily'
--- a/debian/cron.daily	2008-09-16 14:39:55 +0000
+++ b/debian/cron.daily	2008-09-16 14:42:09 +0000
@@ -3,5 +3,5 @@
 set -e
 
 if [ -d /var/cache/userdir-ldap/web-cookies ]; then
-	find /var/cache/userdir-ldap/web-cookies -type f -mtime +1 -print0 -user www-data | xargs -0 --no-run-if-empty rm -f
+	find /var/cache/userdir-ldap/web-cookies -type f -mtime +1 -user www-data -print0 | xargs -0 --no-run-if-empty rm -f
 fi



More information about the Da-tools-commits mailing list