aboutsummaryrefslogtreecommitdiffstats
path: root/cron-sh/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'cron-sh/scripts')
-rwxr-xr-xcron-sh/scripts/01_files.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/cron-sh/scripts/01_files.sh b/cron-sh/scripts/01_files.sh
index 64d82e7..247465f 100755
--- a/cron-sh/scripts/01_files.sh
+++ b/cron-sh/scripts/01_files.sh
@@ -55,6 +55,10 @@ fi
# only running this check when really required
if check_is_enabled "${CHECK_SUID_MD5}" || check_is_enabled "${CHECK_SUID_ROOT}" || check_is_enabled "${CHECK_SGID}" || check_is_enabled "${CHECK_WRITABLE}" || check_is_enabled "${CHECK_UNOWNED}" ; then
# Hard disk related file check; the less priority the better...
+ if [[ -n ${EXCLUDE_REGEXP} ]]; then
+ # passing exclude_regexp value to msec_find
+ export EXCLUDE_REGEXP
+ fi
nice --adjustment=+19 /usr/bin/msec_find ${DIR}
fi