Skip to content
Snippets Groups Projects
Commit a30db649 authored by Wouter Wolters's avatar Wouter Wolters Committed by Christian Kuhn
Browse files

[TASK] Add script to check file permission for files

Resolves: #77367
Releases: master
Change-Id: Id2a8675d3d1a4be5a71b17ba80ed1843b34d67fa
Reviewed-on: https://review.typo3.org/49335


Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent e13d114f
Branches
Tags
No related merge requests found
#!/bin/bash
#########################
#
# Check all files for their file permission.
# An array of files to be excluded is in place.
#
# It expects to be run from the core root.
#
##########################
# Array of files to ignore the file permission check
IGNORE=()
IGNORE[0]="typo3/cli_dispatch.phpsh"
IGNORE[1]="typo3/sysext/core/Build/Configuration/TravisNginxFpm/ConfigureStartNginxFpm.sh"
IGNORE[2]="typo3/sysext/core/Build/Scripts/cglFixMyCommit.sh"
IGNORE[3]="typo3/sysext/core/Build/Scripts/checkFilePermissions.sh"
IGNORE[4]="typo3/sysext/core/Build/Scripts/duplicateExceptionCodeCheck.sh"
IGNORE[5]="typo3/sysext/core/Build/Scripts/splitFunctionalTests.sh"
IGNORE[6]="typo3/sysext/core/Build/Scripts/xlfcheck.sh"
IGNORE[7]="typo3/sysext/core/bin/typo3"
COUNTER=0
for FILE in $(find typo3/ -type f ! -perm 0644); do
if ! [[ ${IGNORE[*]} =~ "$FILE" ]]
then
echo $FILE
COUNTER=$((COUNTER+1))
fi
done
if [ ${COUNTER} -gt 0 ] ; then
echo "$COUNTER number of files have a wrong file permission set."
exit 1
fi
exit 0
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment