aboutsummaryrefslogtreecommitdiffstats
path: root/cron-sh/security_check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cron-sh/security_check.sh')
-rwxr-xr-xcron-sh/security_check.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/cron-sh/security_check.sh b/cron-sh/security_check.sh
index 8714128..7e2bdf6 100755
--- a/cron-sh/security_check.sh
+++ b/cron-sh/security_check.sh
@@ -56,10 +56,10 @@ fi
if [[ ${CHECK_PERMS} == yes ]]; then
# running msec_perms
- test -x /usr/bin/msecperms && /usr/sbin/msecperms 2>&1 > ${TMP}
+ /usr/sbin/msecperms > ${TMP} 2>&1
if [[ -s ${TMP} ]]; then
- printf "\tPermissions changes on system files:\n" >> ${SECURITY}
- cat ${TMP} >> ${SECURITY}
+ printf "\nPermissions changes on system files:\n" >> ${SECURITY}
+ cat ${TMP} | sed -e 's/WARNING: //g' >> ${SECURITY}
fi
fi