You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2006/08/11 07:11:29 UTC

svn commit: r430677 - in /db/derby/code/trunk/bin: NetworkServerControl.bat dblook.bat derby_common.bat ij.bat setEmbeddedCP.bat setNetworkClientCP.bat setNetworkServerCP.bat startNetworkServer.bat stopNetworkServer.bat sysinfo.bat

Author: fuzzylogic
Date: Thu Aug 10 22:11:29 2006
New Revision: 430677

URL: http://svn.apache.org/viewvc?rev=430677&view=rev
Log:
DERBY-1032 (partial): Add Windows batch scripts to bin

Added:
    db/derby/code/trunk/bin/NetworkServerControl.bat   (with props)
    db/derby/code/trunk/bin/dblook.bat   (with props)
    db/derby/code/trunk/bin/derby_common.bat   (with props)
    db/derby/code/trunk/bin/ij.bat   (with props)
    db/derby/code/trunk/bin/setEmbeddedCP.bat   (with props)
    db/derby/code/trunk/bin/setNetworkClientCP.bat   (with props)
    db/derby/code/trunk/bin/setNetworkServerCP.bat   (with props)
    db/derby/code/trunk/bin/startNetworkServer.bat   (with props)
    db/derby/code/trunk/bin/stopNetworkServer.bat   (with props)
    db/derby/code/trunk/bin/sysinfo.bat   (with props)

Added: db/derby/code/trunk/bin/NetworkServerControl.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/NetworkServerControl.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/NetworkServerControl.bat (added)
+++ db/derby/code/trunk/bin/NetworkServerControl.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,36 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=
+

Propchange: db/derby/code/trunk/bin/NetworkServerControl.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/NetworkServerControl.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/dblook.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/dblook.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/dblook.bat (added)
+++ db/derby/code/trunk/bin/dblook.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,36 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.tools.dblook %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.tools.dblook %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=
+

Propchange: db/derby/code/trunk/bin/dblook.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/dblook.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/derby_common.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/derby_common.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/derby_common.bat (added)
+++ db/derby/code/trunk/bin/derby_common.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,72 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+rem %~dp0 is expanded pathname of the current script under NT
+set DEFAULT_DERBY_HOME=%~dp0..
+
+if "%DERBY_HOME%"=="" set DERBY_HOME=%DEFAULT_DERBY_HOME%
+set DEFAULT_DERBY_HOME=
+
+set _USE_CLASSPATH=yes
+
+rem Slurp the command line arguments. This loop allows for an unlimited number
+rem of arguments (up to the command line limit, anyway).
+set DERBY_CMD_LINE_ARGS=%1
+if ""%1""=="""" goto doneStart
+shift
+:setupArgs
+if ""%1""=="""" goto doneStart
+if ""%1""==""-noclasspath"" goto clearclasspath
+set DERBY_CMD_LINE_ARGS=%DERBY_CMD_LINE_ARGS% %1
+shift
+goto setupArgs
+
+rem here is there is a -noclasspath in the options
+:clearclasspath
+set _USE_CLASSPATH=no
+shift
+goto setupArgs
+
+rem This label provides a place for the argument list loop to break out
+rem and for NT handling to skip to.
+
+:doneStart
+rem check the value of DERBY_HOME
+if exist "%DERBY_HOME%\lib\derby.jar" goto setLocalClassPath
+
+:noAntHome
+echo DERBY_HOME is set incorrectly or derby.jar could not be located. Please set DERBY_HOME.
+goto end
+
+:setLocalClassPath
+set LOCALCLASSPATH=%DERBY_HOME%/lib/derby.jar;%DERBY_HOME%/lib/derbynet.jar;%DERBY_HOME%/lib/derbyclient.jar;%DERBY_HOME%/lib/derbytools.jar
+
+:checkJava
+set _JAVACMD=%JAVACMD%
+
+if "%JAVA_HOME%" == "" goto noJavaHome
+if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
+if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
+goto endcommon
+
+:noJavaHome
+if "%_JAVACMD%" == "" set _JAVACMD=java.exe
+
+:endcommon
+

Propchange: db/derby/code/trunk/bin/derby_common.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/derby_common.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/ij.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/ij.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/ij.bat (added)
+++ db/derby/code/trunk/bin/ij.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,36 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.tools.ij %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.tools.ij %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=
+

Propchange: db/derby/code/trunk/bin/ij.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/ij.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/setEmbeddedCP.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/setEmbeddedCP.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/setEmbeddedCP.bat (added)
+++ db/derby/code/trunk/bin/setEmbeddedCP.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,33 @@
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+@rem set DERBY_INSTALL=
+
+@if "%DERBY_HOME%"=="" set DERBY_HOME=%DERBY_INSTALL%
+@if "%DERBY_HOME%"=="" goto noderbyhome
+
+@FOR %%X in ("%DERBY_HOME%") DO SET DERBY_HOME=%%~sX
+
+set CLASSPATH=%DERBY_HOME%\lib\derby.jar;%DERBY_HOME%\lib\derbytools.jar;%CLASSPATH%
+@goto end
+
+:noderbyhome
+@echo DERBY_HOME or DERBY_INSTALL not set. Set one of these variables
+@echo to the location of your Derby installation.
+@goto end
+
+:end

Propchange: db/derby/code/trunk/bin/setEmbeddedCP.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/setEmbeddedCP.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/setNetworkClientCP.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/setNetworkClientCP.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/setNetworkClientCP.bat (added)
+++ db/derby/code/trunk/bin/setNetworkClientCP.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,33 @@
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+@rem set DERBY_INSTALL=
+
+@if "%DERBY_HOME%"=="" set DERBY_HOME=%DERBY_INSTALL%
+@if "%DERBY_HOME%"=="" goto noderbyhome
+
+@FOR %%X in ("%DERBY_HOME%") DO SET DERBY_HOME=%%~sX
+
+set CLASSPATH=%DERBY_HOME%\lib\derbyclient.jar;%DERBY_HOME%\lib\derbytools.jar;%CLASSPATH%
+@goto end
+
+:noderbyhome
+@echo DERBY_HOME or DERBY_INSTALL not set. Set one of these variables
+@echo to the location of your Derby installation.
+@goto end
+
+:end

Propchange: db/derby/code/trunk/bin/setNetworkClientCP.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/setNetworkClientCP.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/setNetworkServerCP.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/setNetworkServerCP.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/setNetworkServerCP.bat (added)
+++ db/derby/code/trunk/bin/setNetworkServerCP.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,32 @@
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+@rem set DERBY_INSTALL=
+
+@if "%DERBY_HOME%"=="" set DERBY_HOME=%DERBY_INSTALL%
+@if "%DERBY_HOME%"=="" goto noderbyhome
+
+@FOR %%X in ("%DERBY_HOME%") DO SET DERBY_INSTALL=%%~sX
+
+set CLASSPATH=%DERBY_HOME%\lib\derby.jar;%DERBY_HOME%\lib\derbytools.jar;%DERBY_HOME%\lib\derbynet.jar;%CLASSPATH%
+@goto end
+
+:noderbyhome
+@echo DERBY_HOME or DERBY_INSTALL not set. Set one of these variables
+@echo to the location of your Derby installation.
+
+:end

Propchange: db/derby/code/trunk/bin/setNetworkServerCP.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/setNetworkServerCP.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/startNetworkServer.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/startNetworkServer.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/startNetworkServer.bat (added)
+++ db/derby/code/trunk/bin/startNetworkServer.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,35 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl start
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl start
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=

Propchange: db/derby/code/trunk/bin/startNetworkServer.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/startNetworkServer.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/stopNetworkServer.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/stopNetworkServer.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/stopNetworkServer.bat (added)
+++ db/derby/code/trunk/bin/stopNetworkServer.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,35 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl shutdown
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.drda.NetworkServerControl shutdown
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=

Propchange: db/derby/code/trunk/bin/stopNetworkServer.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/stopNetworkServer.bat
------------------------------------------------------------------------------
    svn:executable = *

Added: db/derby/code/trunk/bin/sysinfo.bat
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/bin/sysinfo.bat?rev=430677&view=auto
==============================================================================
--- db/derby/code/trunk/bin/sysinfo.bat (added)
+++ db/derby/code/trunk/bin/sysinfo.bat Thu Aug 10 22:11:29 2006
@@ -0,0 +1,36 @@
+@echo off
+
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+
+@REM   http://www.apache.org/licenses/LICENSE-2.0
+
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+
+CALL %~dp0derby_common.bat
+
+if "%_USE_CLASSPATH%"=="no" goto runNoClasspath
+if not "%CLASSPATH%"=="" goto runWithClasspath
+
+:runNoClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%LOCALCLASSPATH%" org.apache.derby.tools.sysinfo %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:runWithClasspath
+"%_JAVACMD%" %DERBY_OPTS% -classpath "%CLASSPATH%;%LOCALCLASSPATH%" org.apache.derby.tools.sysinfo %DERBY_ARGS% %DERBY_CMD_LINE_ARGS%
+goto end
+
+:end
+set _JAVACMD=
+set DERBY_CMD_LINE_ARGS=
+

Propchange: db/derby/code/trunk/bin/sysinfo.bat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: db/derby/code/trunk/bin/sysinfo.bat
------------------------------------------------------------------------------
    svn:executable = *