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
This commit is contained in:
Bryan Kadzban 2008-10-31 03:40:45 +00:00
parent 2788151261
commit c4487b1648

View File

@ -80,7 +80,7 @@ case "${1}" in
boot_mesg -n " /var/lock" ${NORMAL} boot_mesg -n " /var/lock" ${NORMAL}
cd /var/lock && cd /var/lock &&
find . -type f ! -exec rm -f {} \; || failed=1 find . -type f -exec rm -f {} \; || failed=1
boot_mesg " /var/run" ${NORMAL} boot_mesg " /var/run" ${NORMAL}
cd /var/run && cd /var/run &&