diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | init-sh/security.conf | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -1,6 +1,7 @@ 1999-12-17 Yoann Vandoorselaere <yoann@mandrakesoft.com> * security_check.sh: Bugfix * diff_check.sh: dito + * Added security.conf 1999-12-16 Yoann Vandoorselaere <yoann@mandrakesoft.com> * Don't use msec parsing routine to hack inittab. diff --git a/init-sh/security.conf b/init-sh/security.conf new file mode 100644 index 0000000..64ea0ea --- /dev/null +++ b/init-sh/security.conf @@ -0,0 +1,9 @@ +# Modified filters coming from debian security scripts. +CS_NFSAFS='(nfs|afs|xfs|coda)' +CS_TYPES=' type (devpts|auto|proc|msdos|fat|vfat|iso9660|ncpfs|smbfs|'$CS_NFSAFS')' +CS_DEVS='^/dev/fd' +CS_DIRS='on /mnt' +FILTERS="$CS_TYPES|$CS_DEVS|$CS_DIRS" +DIR=`mount | grep -vE "$FILTERS" | cut -d ' ' -f3` +### + |