[Pkg-sysvinit-commits] r382 - in sysvinit/trunk/debian: .
initscripts/etc/init.d
Thomas Hood
jdthood-guest at costa.debian.org
Thu Dec 15 00:32:37 UTC 2005
Author: jdthood-guest
Date: 2005-12-15 00:32:36 +0000 (Thu, 15 Dec 2005)
New Revision: 382
Modified:
sysvinit/trunk/debian/changelog
sysvinit/trunk/debian/initscripts/etc/init.d/bootclean.sh
Log:
another one bites the dust
Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog 2005-12-15 00:24:59 UTC (rev 381)
+++ sysvinit/trunk/debian/changelog 2005-12-15 00:32:36 UTC (rev 382)
@@ -14,6 +14,8 @@
command line arguments (as is the case when they are sourced)
* initscripts: Improve use of log_* functions
(Closes: #55143, #116366, #323749)
+ * bootclean.sh: Do not delete symlinks-to-directories from /var/run/
+ (Closes: #272066)
* checkroot.sh: Fix double printing of 'Done checking root file system';
mountall.sh: Fix chopped-up printing of mount information
(Closes: #339979, #331397, #341097 and presumably closes: #332309)
Modified: sysvinit/trunk/debian/initscripts/etc/init.d/bootclean.sh
===================================================================
--- sysvinit/trunk/debian/initscripts/etc/init.d/bootclean.sh 2005-12-15 00:24:59 UTC (rev 381)
+++ sysvinit/trunk/debian/initscripts/etc/init.d/bootclean.sh 2005-12-15 00:32:36 UTC (rev 382)
@@ -96,7 +96,7 @@
[ "$VERBOSE" != no ] && log_action_begin_msg "Cleaning /var/run"
(
cd /var/run && \
- find . ! -type d ! -name utmp ! -name innd.pid -exec rm -f -- {} \;
+ find . ! -xtype d ! -name utmp ! -name innd.pid -exec rm -f -- {} \;
)
rm -f /var/run/.clean
set -o noclobber
More information about the Pkg-sysvinit-commits
mailing list