blob: 68b6adc3e69f3dc6c8f13f9ea3b46f930c7790ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
#chmod 755 '/opt/red5/red5.sh'
cd '/opt/red5/webapps/openmeetings/WEB-INF/classes/META-INF'
cp -p 'mysql_persistence.xml' 'persistence.xml'
echo " ==> Please make sure that mysql is reachable via TCP/IP"
echo " ==> Do this by commenting out the following line in /etc/my.cnf:"
echo " ==> skip-networking"
echo ""
echo " ==> OpenMeetings/red5 also requires you to open the following ports:"
echo " ==> 5080 8443 1935 8088 9035"
echo ""
echo " ==> Last, please configure your mysql database, user and password at"
echo " ==> /opt/red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml"
echo " ==> Then start mysql and red5. If all went ok, you can access the"
echo " ==> OpenMeetings installer at http://localhost:5080/openmeetings/install"
}
post_upgrade() {
post_install
}
# vim:set ts=2 sw=2 et:
|