Outstanding!

Originally Posted By: jchuzi
ls -Orbitlake /Volumes
6041943 drwxrwxrwt@ 6 root admin hidden 204 Feb 22 16:29 .
0: group:everyone deny add_file,add_subdirectory,directory_inherit,only_inherit

What a strange ACL! I need to figure out if Apple put that there, or if some 3rd-party program does.

--> Have you got some specialized backup software related to some disk storage you bought... or are you just doing basic Time Machine plus SuperDuper? <--


Originally Posted By: jchuzi
find /var/db/receipts -name '*.bom' |
while read x; do if lsbom -p MUGsf "$x" |
grep '/Volumes$'; then echo "$x"; echo; fi; done


drwxrwxrwt root admin ./Volumes
/var/db/receipts/com.apple.pkg.BaseSystem.bom

Okay cool... now i need to figure out where Apple keeps the ACL info.
For 10.5 we could do this:

pkgutil -v --file-info /Volumes

...but i don't think 10.6 is updating things where pkgutil can read it anymore.


Originally Posted By: jchuzi
find /var/db/receipts -name '*.plist' |
while read x; do defaults read "${x%%.plist}" |
grep '/Volumes$' && echo "$x"; done


Nothing happened with this one, Hal.

Hmm. Interesting [not what i'd expect.]

Thanks Jon.