Skip to content
Snippets Groups Projects
Commit 75c1f8cf authored by Dixon Fred's avatar Dixon Fred
Browse files

Updated the cron.daily job for bigbluebutton to delete .pfb and .afm files...

Updated the cron.daily job for bigbluebutton to delete .pfb and .afm files generated by ghostscript from the /tmp directory.
parent f5e6adcd
No related branches found
No related tags found
No related merge requests found
......@@ -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 '{}' \;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment