Author: solomax
Date: Thu Apr 5 11:15:01 2012
New Revision: 1309754
URL: http://svn.apache.org/viewvc?rev=1309754&view=rev
Log:
Windows bat file for command line admin is added
Added:
incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.bat
Modified:
incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.sh
Added: incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.bat
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.bat?rev=1309754&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.bat (added)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.bat Thu Apr
5 11:15:01 2012
@@ -0,0 +1,6 @@
+set RED5DIR=%~dp0
+
+set
CLASSPATH=%RED5DIR%\*;%RED5DIR%\conf;%RED5DIR%\lib\*;%RED5DIR%\webapps\openmeetings\WEB-INF\lib\*;%RED5DIR%\webapps\openmeetings\WEB-INF;%RED5DIR%\webapps\openmeetings\WEB-INF\classes
+
+java -cp "%CLASSPATH%" -Dred5.home=%RED5DIR% org.openmeetings.app.Admin %*
+
Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.sh
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.sh?rev=1309754&r1=1309753&r2=1309754&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.sh
(original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/red5/admin.sh Thu Apr
5 11:15:01 2012
@@ -1,7 +1,7 @@
#!/bin/bash
export RED5DIR=$(cd $(dirname "$0"); pwd)
-export
CLASSPATH=./*:conf:lib/*:$RED5DIR/webapps/openmeetings/WEB-INF/lib/*:$RED5DIR/webapps/openmeetings/WEB-INF:$RED5DIR/webapps/openmeetings/WEB-INF/classes
+export
CLASSPATH=$RED5DIR/*:$RED5DIR/conf:$RED5DIR/lib/*:$RED5DIR/webapps/openmeetings/WEB-INF/lib/*:$RED5DIR/webapps/openmeetings/WEB-INF:$RED5DIR/webapps/openmeetings/WEB-INF/classes
java -cp "$CLASSPATH" "-Dred5.home=$RED5DIR" org.openmeetings.app.Admin $*