#!/bin/sh

if [ -e /var/lib/puppetserver/reports ] ; then
	find /var/lib/puppetserver/reports -maxdepth 3 -type f -ctime +1 -delete
fi

exit 0
