From 88393b1aa742af08b364f48b15224d165151d9f9 Mon Sep 17 00:00:00 2001 From: Fred Dixon <ffdixon@gmail.com> Date: Thu, 5 Mar 2020 12:23:53 -0600 Subject: [PATCH] Fix #8711 --- bigbluebutton-config/cron.daily/bigbluebutton | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-config/cron.daily/bigbluebutton b/bigbluebutton-config/cron.daily/bigbluebutton index a754e68ac5..5db7732fef 100755 --- a/bigbluebutton-config/cron.daily/bigbluebutton +++ b/bigbluebutton-config/cron.daily/bigbluebutton @@ -59,9 +59,10 @@ for app in recordings screenshare; do done # -# Delete FreeSWITCH wav recordings older than N days +# Delete FreeSWITCH wav/opus recordings older than N days # -find /var/freeswitch/meetings/ -name "*.wav" -mtime +$history -delete +find /var/freeswitch/meetings/ -name "*.wav" -mtime +$history -delete +find /var/freeswitch/meetings/ -name "*.opus" -mtime +$history -delete # # Delete old/rotated log files -- GitLab