Skip to content

Commit

Permalink
Slightly lower memory check for 4G for servers to avoid warnings on s…
Browse files Browse the repository at this point in the history
…ervers with close to 4G
  • Loading branch information
ffdixon committed Sep 14, 2014
1 parent 51dbe65 commit f305a9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bigbluebutton-config/bin/bbb-conf
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ check_state() {
echo
fi

if (( $MEM < 3975 )); then
if (( $MEM < 3940 )); then
echo "# Warning: You are running BigBlueButton on a server with less than 4G of memory. Your"
echo "# performance may suffer."
echo
Expand Down
4 changes: 2 additions & 2 deletions bigbluebutton-config/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h3>Record and Playback</h3>

<div class="bbb-features-content">
<h3>Whiteboard</h3>
<p>The whiteboard controls let you annotate and call out key parts of your presentation.</p>
<p>The whiteboard controls let you annotate key parts of your presentation.</p>
</div>
</div>

Expand Down Expand Up @@ -117,7 +117,7 @@ <h3>WebRTC Audio</h3>

<div class="bbb-features-content">
<h3>Presentation</h3>
<p>You can upload any PDF presentation or MS office document. BigBlueButton keeps everyone in sync with your current slide, zoom, pan, and mouse pointer.</p>
<p>You can upload any PDF presentation or MS office document. BigBlueButton keeps everyone in sync with your current slide, zoom, pan, annotations, and mouse pointer.</p>
</div>
</div>

Expand Down

0 comments on commit f305a9b

Please sign in to comment.