Newer
Older
Felipe Cecagno
committed
#!/bin/bash
#
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
#
# Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
#
# This program is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free Software
# Foundation; either version 3.0 of the License, or (at your option) any later
# version.
#
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
#
Felipe Cecagno
committed
sudo cp core/Gemfile /usr/local/bigbluebutton/core/Gemfile
sudo rm -rf /usr/local/bigbluebutton/core/lib
sudo cp -r core/lib /usr/local/bigbluebutton/core/
sudo rm -rf /usr/local/bigbluebutton/core/scripts
sudo cp -r core/scripts /usr/local/bigbluebutton/core/
sudo rm -rf /var/bigbluebutton/playback/*
function deploy_format() {
local formats=$1
for format in $formats
do
playback_dir="$format/playback/$format"
scripts_dir="$format/scripts"
if [ -d $playback_dir ]; then sudo cp -r $playback_dir /var/bigbluebutton/playback/; fi
if [ -d $scripts_dir ]; then sudo cp -r $scripts_dir/* /usr/local/bigbluebutton/core/scripts/; fi
sudo mkdir -p /var/log/bigbluebutton/$format /var/bigbluebutton/published/$format /var/bigbluebutton/recording/publish/$format
done
}
deploy_format "presentation"
Felipe Cecagno
committed
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
CAPTIONS_DIR=/var/bigbluebutton/captions/
if [ ! -d "$CAPTIONS_DIR" ]; then
sudo mkdir -p $CAPTIONS_DIR
fi
EVENTS_DIR=/var/bigbluebutton/events/
if [ ! -d "$EVENTS_DIR" ]; then
sudo mkdir -p $EVENTS_DIR
fi
PLAYBACK_DIR=/var/bigbluebutton/playback/
if [ ! -d "$PLAYBACK_DIR" ]; then
sudo mkdir -p $PLAYBACK_DIR
fi
REC_RAW_DIR=/var/bigbluebutton/recording/raw/
if [ ! -d "$REC_RAW_DIR" ]; then
sudo mkdir -p $REC_RAW_DIR
fi
REC_PROC_DIR=/var/bigbluebutton/recording/process/
if [ ! -d "$REC_PROC_DIR" ]; then
sudo mkdir -p $REC_PROC_DIR
fi
REC_PUB_DIR=/var/bigbluebutton/recording/publish/
if [ ! -d "$REC_PUB_DIR" ]; then
sudo mkdir -p $REC_PUB_DIR
fi
REC_STATUS_ENDED_DIR=/var/bigbluebutton/recording/status/ended/
if [ ! -d "$REC_STATUS_ENDED_DIR" ]; then
sudo mkdir -p $REC_STATUS_ENDED_DIR
fi
REC_STATUS_RECORDED_DIR=/var/bigbluebutton/recording/status/recorded/
if [ ! -d "$REC_STATUS_RECORDED_DIR" ]; then
sudo mkdir -p $REC_STATUS_RECORDED_DIR
fi
REC_STATUS_ARCHIVED_DIR=/var/bigbluebutton/recording/status/archived/
if [ ! -d "$REC_STATUS_ARCHIVED_DIR" ]; then
sudo mkdir -p $REC_STATUS_ARCHIVED_DIR
fi
REC_STATUS_PROCESSED_DIR=/var/bigbluebutton/recording/status/processed/
if [ ! -d "$REC_STATUS_PROCESSED_DIR" ]; then
sudo mkdir -p $REC_STATUS_PROCESSED_DIR
fi
REC_STATUS_SANITY_DIR=/var/bigbluebutton/recording/status/sanity/
if [ ! -d "$REC_STATUS_SANITY_DIR" ]; then
sudo mkdir -p $REC_STATUS_SANITY_DIR
fi
sudo mv /usr/local/bigbluebutton/core/scripts/*.nginx /etc/bigbluebutton/nginx/
sudo chown -R bigbluebutton:bigbluebutton /var/bigbluebutton/ /var/log/bigbluebutton/
#cd /usr/local/bigbluebutton/core/
#sudo bundle install