#!/bin/sh
find ~/tmp -type f -atime +3 -delete
find ~/tmp -type d -empty -atime +1 -delete

find ~/tmp -maxdepth 1 -type f -name 'rpm-tmp.*' -atime +1 -delete
find ~/tmp -maxdepth 1 -type d -name '*-buildroot' -atime +1 -print0 \
	| xargs -0r rm -rf
	
find /tmp/.private/mithraen/* -mindepth 1 -type f -atime +1 -delete

