tazwok view chroot-scripts/clean-chroot @ rev 559

tazwok: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 09 11:24:59 2021 +0000 (2021-11-09)
parents 35ceb7fc85e0
children
line source
1 #!/bin/sh
3 # Remove packages which was not in the chroot at creation time.
4 for pkg in $(ls /var/lib/tazpkg/installed); do
5 [ -d /var/lib/tazpkg/installed/$pkg ] || continue
6 grep -q ^$pkg$ /var/lib/tazpkg/chroot-pkgs || tazpkg remove $pkg --auto
7 done
8 exit 0