You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sm...@apache.org on 2013/08/18 19:33:53 UTC

git commit: AMBARI-2949. oozie server does not start with custom db. (smohanty)

Updated Branches:
  refs/heads/trunk ba87bc0cc -> 9a85a69bc


AMBARI-2949. oozie server does not start with custom db. (smohanty)


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

Branch: refs/heads/trunk
Commit: 9a85a69bca4c67e541f505149da96c73befd9220
Parents: ba87bc0
Author: Sumit Mohanty <sm...@hortonworks.com>
Authored: Sun Aug 18 10:30:41 2013 -0700
Committer: Sumit Mohanty <sm...@hortonworks.com>
Committed: Sun Aug 18 10:30:41 2013 -0700

----------------------------------------------------------------------
 .../src/main/puppet/modules/hdp-oozie/manifests/service.pp         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/9a85a69b/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/service.pp
----------------------------------------------------------------------
diff --git a/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/service.pp b/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/service.pp
index 11a6275..f3016e2 100644
--- a/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/service.pp
+++ b/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/service.pp
@@ -96,7 +96,7 @@ class hdp-oozie::service(
   $cmd1 = "cd /usr/lib/oozie && tar -xvf oozie-sharelib.tar.gz"
   $cmd2 =  "cd /usr/lib/oozie && mkdir -p ${oozie_tmp}"
   if (hdp_get_major_stack_version($hdp::params::stack_version) >= 2) {
-    $cmd3 =  "cd /usr/lib/oozie && chown ${user}:${hdp::params::user_group} ${oozie_tmp} && mkdir -p ${oozie_libext_dir} && cp ${$ext_js_path} ${oozie_libext_dir}" 
+    $cmd3 =  "cd /usr/lib/oozie && chown ${user}:${hdp::params::user_group} ${oozie_tmp} && mkdir -p ${oozie_libext_dir} && cp ${$ext_js_path} ${oozie_libext_dir} && cp ${$jdbc_driver_jar} ${oozie_libext_dir}"
   } else {
     $cmd3 =  "cd /usr/lib/oozie && chown ${user}:${hdp::params::user_group} ${oozie_tmp}" 
   }