tazwok annotate chroot-scripts/clean-chroot @ rev 523

Fixed python compiled files to be removed after files.list is made. Added perl_compiled_files_remove function to remove these files before files.list is made since these are only made when compiling.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 14 17:53:42 2011 +0000 (2011-05-14)
parents
children 4e53898ed66c
rev   line source
gokhlayeh@315 1 #!/bin/sh
gokhlayeh@315 2
gokhlayeh@315 3 # Remove packages which was not in the chroot at creation time.
gokhlayeh@315 4 for pkg in $(ls /var/lib/tazpkg/installed); do
gokhlayeh@315 5 [ -d /var/lib/tazpkg/installed/$pkg ] || continue
gokhlayeh@315 6 [ "$(grep ^$pkg$ /var/lib/tazpkg/chroot-pkgs)" ] || tazpkg remove $pkg --auto
gokhlayeh@315 7 done
gokhlayeh@315 8 exit 0