[Pkg-sysvinit-commits] r1351 - in sysvinit/trunk/debian: . initscripts/lib/init

Petter Reinholdtsen pere at alioth.debian.org
Sat Jun 27 06:54:10 UTC 2009


Author: pere
Date: 2009-06-27 06:54:09 +0000 (Sat, 27 Jun 2009)
New Revision: 1351

Modified:
   sysvinit/trunk/debian/changelog
   sysvinit/trunk/debian/initscripts/lib/init/bootclean.sh
Log:
Make temp cleaning more verbose (Closes: #534609).

Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog	2009-06-24 22:30:05 UTC (rev 1350)
+++ sysvinit/trunk/debian/changelog	2009-06-27 06:54:09 UTC (rev 1351)
@@ -1,11 +1,15 @@
-sysvinit (2.86.ds1-63) unstable; urgency=low
+sysvinit (2.86.ds1-63) UNRELEASED; urgency=low
 
+  [ Kel Modderman ]
   * Patch startpar to add compat define for posix_fadvise() when on
     platform such as kfreebsd which does not support that. Thanks to
     Petr Salinger for the patch. (Closes: #534337)
   * Patch startpar to add compat define for O_DIRECT to fix ftbfs on
     hurd. Thanks Samuel Thibault for the patch. (Closes: #534471)
 
+  [ Petter Reinholdtsen ]
+  * Make temp cleaning more verbose (Closes: #534609).
+
  -- Kel Modderman <kel at otaku42.de>  Thu, 25 Jun 2009 08:27:16 +1000
 
 sysvinit (2.86.ds1-62) unstable; urgency=low

Modified: sysvinit/trunk/debian/initscripts/lib/init/bootclean.sh
===================================================================
--- sysvinit/trunk/debian/initscripts/lib/init/bootclean.sh	2009-06-24 22:30:05 UTC (rev 1350)
+++ sysvinit/trunk/debian/initscripts/lib/init/bootclean.sh	2009-06-27 06:54:09 UTC (rev 1351)
@@ -160,6 +160,7 @@
 }
 
 which find >/dev/null 2>&1 || exit 1
+log_begin_msg "Cleaning up temporary files..."
 
 # If there are flag files that have not been created by root
 # then remove them
@@ -185,5 +186,5 @@
 [ -d /tmp ] && ! [ -f /tmp/.clean ] && { clean_tmp || ES=1 ; }
 [ -d /var/run ] && ! [ -f /var/run/.clean ] && { clean_run || ES=1 ; }
 [ -d /var/lock ] && ! [ -f /var/lock/.clean ] && { clean_lock || ES=1 ; }
+log_end_msg $ES
 exit $ES
-




More information about the Pkg-sysvinit-commits mailing list