Browse Source

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
Bryan Kadzban 16 years ago
parent
commit
c4487b1648
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bootscripts/lfs/init.d/cleanfs

+ 1 - 1
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 &&