Merge pull request #446 from ffdixon/check-updates

Updated the cron.daily job for bigbluebutton to delete .pfb and .afm fil...
This commit is contained in:
Fred Dixon 2014-11-27 14:28:05 -05:00
commit 6bcdc1a29d

View File

@ -78,3 +78,9 @@ remove_raw_of_published_recordings(){
#remove_raw_of_published_recordings
#
# Remove old *.afm and *.pfb files from /tmp directory (these were created by Ghostscript)
#
find /tmp -name "*.afm" -mtime +10 -exec rm '{}' \;
find /tmp -name "*.pfb" -mtime +10 -exec rm '{}' \;