Revert change to try and avoid race condition in 4230 script.

This change can be better avoided in another location as this script
remaining the same is currently needed for it to pass the CIS benchmark
check.

BUG=b/327004469
TEST=None
RELEASE_NOTE=None

cos-patch: bug
Change-Id: I172a1d5284ce5808e22ebfcc97533f03e08b3c83
diff --git a/alphabet-compliance/scripts/4230-logfile-permissions-cos.sh b/alphabet-compliance/scripts/4230-logfile-permissions-cos.sh
index 25cb22b..0253898 100644
--- a/alphabet-compliance/scripts/4230-logfile-permissions-cos.sh
+++ b/alphabet-compliance/scripts/4230-logfile-permissions-cos.sh
@@ -14,5 +14,5 @@
 # limitations under the License.
 
 ## Section: 4.2.3 Ensure permissions on all logfiles are configured ##
-sudo find /var/log -ignore_readdir_race -type f -exec chmod -f g-wx,o-rwx "{}" \
-  + -o -type d -exec chmod -f g-w,o-rwx "{}" + || true
+sudo find /var/log -type f -exec chmod g-wx,o-rwx "{}" + -o \
+  -type d -exec chmod g-w,o-rwx "{}" +