Fix the ssh/sshd distribution scripts

Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/be51bdc8
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/be51bdc8
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/be51bdc8

Branch: refs/heads/master
Commit: be51bdc8af529060e6b4ac568884c07bed74b983
Parents: 612218b
Author: Guillaume Nodet <gno...@apache.org>
Authored: Fri Mar 10 11:59:02 2017 +0100
Committer: Guillaume Nodet <gno...@apache.org>
Committed: Fri Mar 10 11:59:02 2017 +0100

----------------------------------------------------------------------
 assembly/src/main/distribution/bin/ssh.bat  | 2 +-
 assembly/src/main/distribution/bin/ssh.sh   | 2 +-
 assembly/src/main/distribution/bin/sshd.bat | 2 +-
 assembly/src/main/distribution/bin/sshd.sh  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/be51bdc8/assembly/src/main/distribution/bin/ssh.bat
----------------------------------------------------------------------
diff --git a/assembly/src/main/distribution/bin/ssh.bat 
b/assembly/src/main/distribution/bin/ssh.bat
index 57b9000..14b5b41 100644
--- a/assembly/src/main/distribution/bin/ssh.bat
+++ b/assembly/src/main/distribution/bin/ssh.bat
@@ -91,7 +91,7 @@ goto :EOF
 SET ARGS=%1 %2 %3 %4 %5 %6 %7 %8
 rem Execute the Java Virtual Machine
 cd %SSHD_HOME%
-"%JAVA%" %JAVA_OPTS% %OPTS% -classpath "%CLASSPATH%" -Dsshd.home="%SSHD_HOME%" 
org.apache.sshd.SshClient %ARGS%
+"%JAVA%" %JAVA_OPTS% %OPTS% -classpath "%CLASSPATH%" -Dsshd.home="%SSHD_HOME%" 
org.apache.sshd.client.SshClient %ARGS%
 
 rem # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 

http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/be51bdc8/assembly/src/main/distribution/bin/ssh.sh
----------------------------------------------------------------------
diff --git a/assembly/src/main/distribution/bin/ssh.sh 
b/assembly/src/main/distribution/bin/ssh.sh
index ac58a55..3e29813 100644
--- a/assembly/src/main/distribution/bin/ssh.sh
+++ b/assembly/src/main/distribution/bin/ssh.sh
@@ -255,7 +255,7 @@ run() {
         CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
     fi
     cd $SSHD_BASE
-    exec $JAVA $JAVA_OPTS -Dsshd.home="$SSHD_HOME" $OPTS -classpath 
"$CLASSPATH" org.apache.sshd.SshClient "$@"
+    exec $JAVA $JAVA_OPTS -Dsshd.home="$SSHD_HOME" $OPTS -classpath 
"$CLASSPATH" org.apache.sshd.client.SshClient "$@"
 }
 
 main() {

http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/be51bdc8/assembly/src/main/distribution/bin/sshd.bat
----------------------------------------------------------------------
diff --git a/assembly/src/main/distribution/bin/sshd.bat 
b/assembly/src/main/distribution/bin/sshd.bat
index d7a5c0c..0863f7f 100644
--- a/assembly/src/main/distribution/bin/sshd.bat
+++ b/assembly/src/main/distribution/bin/sshd.bat
@@ -91,7 +91,7 @@ goto :EOF
 SET ARGS=%1 %2 %3 %4 %5 %6 %7 %8
 rem Execute the Java Virtual Machine
 cd %SSHD_HOME%
-"%JAVA%" %JAVA_OPTS% %OPTS% -classpath "%CLASSPATH%" -Dsshd.home="%SSHD_HOME%" 
org.apache.sshd.SshServer %ARGS%
+"%JAVA%" %JAVA_OPTS% %OPTS% -classpath "%CLASSPATH%" -Dsshd.home="%SSHD_HOME%" 
org.apache.sshd.server.SshServer %ARGS%
 
 rem # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 

http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/be51bdc8/assembly/src/main/distribution/bin/sshd.sh
----------------------------------------------------------------------
diff --git a/assembly/src/main/distribution/bin/sshd.sh 
b/assembly/src/main/distribution/bin/sshd.sh
index da28516..d07e203 100644
--- a/assembly/src/main/distribution/bin/sshd.sh
+++ b/assembly/src/main/distribution/bin/sshd.sh
@@ -255,7 +255,7 @@ run() {
         CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
     fi
     cd $SSHD_BASE
-    exec $JAVA $JAVA_OPTS -Dsshd.home="$SSHD_HOME" $OPTS -classpath 
"$CLASSPATH" org.apache.sshd.SshServer "$@"
+    exec $JAVA $JAVA_OPTS -Dsshd.home="$SSHD_HOME" $OPTS -classpath 
"$CLASSPATH" org.apache.sshd.server.SshServer "$@"
 }
 
 main() {

Reply via email to