diff options
author | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-20 16:56:06 +0000 |
---|---|---|
committer | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-20 16:56:06 +0000 |
commit | c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625 (patch) | |
tree | b6b0e0c878025162263e51515934b0a5aa152742 /cron-sh/security_check.sh | |
parent | 05ac8ef91d281e08aed417a44a2decad2ed4ac63 (diff) | |
download | msec-c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625.tar msec-c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625.tar.gz msec-c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625.tar.bz2 msec-c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625.tar.xz msec-c0cb4cdf9c1ffae8f9d5e6bf07d79daf21561625.zip |
*** empty log message ***
Diffstat (limited to 'cron-sh/security_check.sh')
-rwxr-xr-x | cron-sh/security_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-sh/security_check.sh b/cron-sh/security_check.sh index 5b961bd..bc0cd62 100755 --- a/cron-sh/security_check.sh +++ b/cron-sh/security_check.sh @@ -197,7 +197,7 @@ fi /bin/mount | /bin/grep -v nosuid | /bin/grep ' nfs ' > ${TMP} if [[ -s ${TMP} ]] ; then printf "\nSecurity Warning: The following NFS mounts haven't got the nosuid option set :\n" >> ${SECURITY} - cat ${TMP} >> ${SECURITY} + cat ${TMP} | awk '{ print "\t\t- "$0 }' >> ${SECURITY} fi ### Files that should not have + signs. |