From c4487b16486fa8ded8432a065a428c86ed7b0292 Mon Sep 17 00:00:00 2001 From: Bryan Kadzban Date: Fri, 31 Oct 2008 03:40:45 +0000 Subject: Remove extra ! in the /var/lock find command (presumably this was just a typo). (The presence of the ! does not actually break anything, but still looks wrong.) git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8723 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- bootscripts/lfs/init.d/cleanfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootscripts') diff --git a/bootscripts/lfs/init.d/cleanfs b/bootscripts/lfs/init.d/cleanfs index df6fb425b..c5a42970c 100644 --- a/bootscripts/lfs/init.d/cleanfs +++ b/bootscripts/lfs/init.d/cleanfs @@ -80,7 +80,7 @@ case "${1}" in boot_mesg -n " /var/lock" ${NORMAL} cd /var/lock && - find . -type f ! -exec rm -f {} \; || failed=1 + find . -type f -exec rm -f {} \; || failed=1 boot_mesg " /var/run" ${NORMAL} cd /var/run && -- cgit v1.2.3-54-g00ecf