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

Added check to bbb-conf --check for ensuring ffmpeg is installed

parent 777c3972
No related branches found
No related tags found
No related merge requests found
......@@ -930,6 +930,16 @@ check_state() {
fi
done
#
# Check if any of the red5 BigBlueButton applications did not start propery
#
COMMANDS="ffmpeg ruby gem ghostscript pdf2swf"
for cmd in $COMMANDS ; do
if ! which $cmd > /dev/null; then
echo "# $cmd command not found"
fi
done
if [ -f /usr/share/red5/log/sip.log ]; then
#
......
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