On 2008-12-18, jul <[email protected]> wrote: > a small question, is there any way to check integrity of installed > packages'binaries ?
yes, by (ab)using pkg_create:
for i in `find /var/db/pkg -name +CONTENTS`; do
pkg_create -nf $i > /dev/null
done

