#!/bin/sh
#
# d-i may have stashed some packages on the disk that it copied off the
# CD-ROM. Move them into the apt cache.

find /var/cache/archive-copier/desktop -type f -print0 | \
	xargs -0r mv --target-directory /var/cache/apt/archives
rmdir --ignore-fail-on-non-empty /var/cache/archive-copier/desktop
