There are files on the filesystem on most *nix systems, that get deleted and recreated... and as such, the inode changes.. for example.. /etc/resolv.conf.. dhcpd sometimes removes this file and creates a new one.. then, applications like qmail and others, can no longer access /etc/resolv.conf, becuase in the acl they were given permission to access that file by "/etc/resolv.conf r".. i know this problem can be solved by doing "/etc/resolv.conf* r", but then that gives access to other files u may not want the program to have access to.. maybe an object option can be given .. such as "/etc/resolv.conf pr", where p means match based on the filename "/etc/resolv.conf" instead of the inode of /etc/resolv.conf..
another question.. i am assuming matching on inode number instead of file name is for security reasons... if not, why is matching done on inode instead of file name?
--hmhansolo
thanks for the help