Updated Branches: refs/heads/trunk 288ae2a55 -> 8167eff34
AMBARI-3260. Fix text for custom JCE policy setup. (swagle) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/8167eff3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/8167eff3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/8167eff3 Branch: refs/heads/trunk Commit: 8167eff34210cf5a6aa8c38b81d2e627f840a13b Parents: 288ae2a Author: Siddharth Wagle <[email protected]> Authored: Tue Sep 17 10:47:17 2013 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Tue Sep 17 10:48:13 2013 -0700 ---------------------------------------------------------------------- ambari-server/src/main/python/ambari-server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/8167eff3/ambari-server/src/main/python/ambari-server.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/python/ambari-server.py b/ambari-server/src/main/python/ambari-server.py index 72cf3fe..cad7c8e 100755 --- a/ambari-server/src/main/python/ambari-server.py +++ b/ambari-server/src/main/python/ambari-server.py @@ -3686,7 +3686,8 @@ def main(): parser.add_option('-i', '--jdk-location', dest="jdk_location", default=None, help="Use specified JDK file in local filesystem instead of downloading") parser.add_option('-c', '--jce-policy', default=None, - help="Use specified jce_policy. Must be valid on all hosts", dest="jce_policy") + help="Use specified jce_policy. Must be valid on " + "ambari server host", dest="jce_policy") parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="Print verbose status messages")
