You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by vb...@apache.org on 2015/01/27 15:00:52 UTC

ambari git commit: AMBARI-9238. Blueprint is installing MySQL even when using "Existing MySQL" Hive option PART2.(vbrodetskyi)

Repository: ambari
Updated Branches:
  refs/heads/trunk 08783b6cb -> 2bb1eb2ae


AMBARI-9238. Blueprint is installing MySQL even when using "Existing MySQL" Hive option PART2.(vbrodetskyi)


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

Branch: refs/heads/trunk
Commit: 2bb1eb2ae9bec3dad5bd3f01af0472256949d239
Parents: 08783b6
Author: Vitaly Brodetskyi <vb...@hortonworks.com>
Authored: Thu Jan 15 11:46:12 2015 +0200
Committer: Vitaly Brodetskyi <vb...@hortonworks.com>
Committed: Thu Jan 15 11:46:12 2015 +0200

----------------------------------------------------------------------
 .../HIVE/0.12.0.2.0/package/scripts/webhcat_server.py             | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/2bb1eb2a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/webhcat_server.py
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/webhcat_server.py b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/webhcat_server.py
index 21d9c4e..2b470a9 100644
--- a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/webhcat_server.py
+++ b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/webhcat_server.py
@@ -31,7 +31,8 @@ class WebHCatServer(Script):
     return {"HDP": "hive-webhcat"}
 
   def install(self, env):
-    self.install_packages(env)
+    import params
+    self.install_packages(env, exclude_packages=params.hive_exclude_packages)
 
 
   def configure(self, env):