You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by dr...@apache.org on 2015/03/21 01:06:06 UTC

[2/2] directory-kerby git commit: Fixed script wrapers

Fixed script wrapers


Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/2e1de10b
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/2e1de10b
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/2e1de10b

Branch: refs/heads/master
Commit: 2e1de10bca564fa618b171fed21cca4117a3ac68
Parents: 0c1d0e7
Author: Drankye <dr...@gmail.com>
Authored: Sat Mar 21 08:05:50 2015 +0800
Committer: Drankye <dr...@gmail.com>
Committed: Sat Mar 21 08:05:50 2015 +0800

----------------------------------------------------------------------
 kerby-dist/tool-dist/bin/kadmin.sh | 4 +++-
 kerby-dist/tool-dist/bin/kinit.sh  | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/2e1de10b/kerby-dist/tool-dist/bin/kadmin.sh
----------------------------------------------------------------------
diff --git a/kerby-dist/tool-dist/bin/kadmin.sh b/kerby-dist/tool-dist/bin/kadmin.sh
index 093a6d4..5f80f35 100644
--- a/kerby-dist/tool-dist/bin/kadmin.sh
+++ b/kerby-dist/tool-dist/bin/kadmin.sh
@@ -1,2 +1,4 @@
 #!/bin/bash
-java -Xdebug -Xrunjdwp:transport=dt_socket,address=1046,server=y,suspend=n -cp ../lib/kadmin-1.0-SNAPSHOT-jar-with-dependencies.jar org.apache.kerby.kerberos.tool.kadmin.Kadmin $@
\ No newline at end of file
+java -Xdebug -Xrunjdwp:transport=dt_socket,address=1046,server=y,suspend=n \
+-cp -cp ../lib/kerb-client-1.0-SNAPSHOT-jar-with-dependencies.jar:../lib/client-tool-1.0-SNAPSHOT.jar \
+../lib/server-tool-1.0-SNAPSHOT.jar org.apache.kerby.kerberos.tool.kadmin.Kadmin $@
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/2e1de10b/kerby-dist/tool-dist/bin/kinit.sh
----------------------------------------------------------------------
diff --git a/kerby-dist/tool-dist/bin/kinit.sh b/kerby-dist/tool-dist/bin/kinit.sh
index c39df45..4c465c2 100644
--- a/kerby-dist/tool-dist/bin/kinit.sh
+++ b/kerby-dist/tool-dist/bin/kinit.sh
@@ -1,2 +1,4 @@
 #!/bin/bash
-java -Xdebug -Xrunjdwp:transport=dt_socket,address=1045,server=y,suspend=n -cp ../lib/kerb-client-1.0-SNAPSHOT-jar-with-dependencies.jar:../lib/kinit-1.0-SNAPSHOT.jar org.apache.kerby.kerberos.tool.kinit.Kinit $@
+java -Xdebug -Xrunjdwp:transport=dt_socket,address=1045,server=y,suspend=n \
+-cp ../lib/kerb-client-1.0-SNAPSHOT-jar-with-dependencies.jar:../lib/client-tool-1.0-SNAPSHOT.jar \
+org.apache.kerby.kerberos.tool.kinit.Kinit $@