diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-12-18 01:50:17 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-12-18 01:50:17 +0100 |
commit | c736d21ae97cbd9e4f6b036029426f77f14fd063 (patch) | |
tree | b50a16ea9a71d7355570925d6dc2dba592f06d67 /cron-jobs/sourceballs | |
parent | 76256c33bb6fa06b79bdab6615f2da587cd80f31 (diff) | |
download | dbscripts-c736d21ae97cbd9e4f6b036029426f77f14fd063.tar.gz dbscripts-c736d21ae97cbd9e4f6b036029426f77f14fd063.tar.xz |
Touch old packages after moving them to the cleanup dirs
This updates the mtime of those files and will help us to remove them later.
Diffstat (limited to 'cron-jobs/sourceballs')
-rwxr-xr-x | cron-jobs/sourceballs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cron-jobs/sourceballs b/cron-jobs/sourceballs index 6553327..85221a7 100755 --- a/cron-jobs/sourceballs +++ b/cron-jobs/sourceballs @@ -125,7 +125,10 @@ if [ ${#old_pkgs[@]} -ge 1 ]; then ${SOURCE_CLEANUP_DRYRUN} && warning 'dry run mode is active' for old_pkg in ${old_pkgs[@]}; do msg2 "${old_pkg}" - ${SOURCE_CLEANUP_DRYRUN} || mv "$FTP_BASE/${SRCPOOL}/${old_pkg}" "${SOURCE_CLEANUP_DESTDIR}" + if ! ${SOURCE_CLEANUP_DRYRUN}; then + mv "$FTP_BASE/${SRCPOOL}/${old_pkg}" "${SOURCE_CLEANUP_DESTDIR}" + touch "${SOURCE_CLEANUP_DESTDIR}/${old_pkg}" + fi done fi |