diff options
author | ru <ru@FreeBSD.org> | 2007-11-23 13:00:31 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-11-23 13:00:31 +0000 |
commit | df014ee1ed1c58f001d3f7864403f90200355674 (patch) | |
tree | 985fd6c8830e11a0629d5848778116f11edb79ad /etc | |
parent | c4ceee25beb06507f611a0c053be816a43223c92 (diff) | |
download | FreeBSD-src-df014ee1ed1c58f001d3f7864403f90200355674.zip FreeBSD-src-df014ee1ed1c58f001d3f7864403f90200355674.tar.gz |
Also check setuid executables on ZFS.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/periodic/security/100.chksetuid | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/periodic/security/100.chksetuid b/etc/periodic/security/100.chksetuid index 789914a..2921ee6 100755 --- a/etc/periodic/security/100.chksetuid +++ b/etc/periodic/security/100.chksetuid @@ -44,7 +44,7 @@ case "$daily_status_security_chksetuid_enable" in echo "" echo 'Checking setuid files and devices:' # XXX Note that there is the possibility of overrunning the args to ls - MP=`mount -t ufs | egrep -v " no(suid|exec)" | awk '{ print $3 }' | sort` + MP=`mount -t ufs,zfs | egrep -v " no(suid|exec)" | awk '{ print $3 }' | sort` if [ -n "${MP}" ] then set ${MP} |