# HG changeset patch # User Pascal Bellard # Date 1209147473 0 # Node ID 680ec3abef92b5cc12c713b3a881044b53cdb87f # Parent 93645e05c84250d8e18f68942088df870a53ba5d check --full: look for uninstalled files diff -r 93645e05c842 -r 680ec3abef92 tazpkg --- a/tazpkg Fri Apr 18 17:42:04 2008 +0000 +++ b/tazpkg Fri Apr 25 18:17:53 2008 +0000 @@ -1198,6 +1198,13 @@ echo "" done done + MSG="No package has installed the following files:\n" + find /etc /bin /sbin /lib /usr -not -type d | while read file; do + case "$file" in *\[*) continue;; esac + grep -q "^$file$" */files.list && continue + echo -e "$MSG $file" + MSG="" + done fi echo "Check completed." ;;