Skip to content
Snippets Groups Projects
Unverified Commit 93dca1be authored by Dixon Fred's avatar Dixon Fred Committed by GitHub
Browse files

Merge pull request #8712 from ffdixon/delete-opus

Fix #8711
parents 76deb095 88393b1a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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