You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by vi...@apache.org on 2012/06/07 05:35:52 UTC

svn commit: r1347360 - in /incubator/ambari/branches/ambari-186: ./ hmc/puppet/modules/hdp-hive/manifests/ hmc/puppet/modules/hdp-oozie/manifests/ hmc/puppet/modules/hdp-templeton/manifests/

Author: vikram
Date: Thu Jun  7 03:35:52 2012
New Revision: 1347360

URL: http://svn.apache.org/viewvc?rev=1347360&view=rev
Log:
AMBARI-512. Fix puppet manifests for tarball downloads via rpms. (Contributed by Mahadev)

Modified:
    incubator/ambari/branches/ambari-186/CHANGES.txt
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-hive/manifests/mysql-connector.pp
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-oozie/manifests/download-ext-zip.pp
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp

Modified: incubator/ambari/branches/ambari-186/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/CHANGES.txt?rev=1347360&r1=1347359&r2=1347360&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/CHANGES.txt (original)
+++ incubator/ambari/branches/ambari-186/CHANGES.txt Thu Jun  7 03:35:52 2012
@@ -6,6 +6,8 @@ characters wide.
 
 Release 0.1.x - unreleased
 
+  AMBARI-512. Fix puppet manifests for tarball downloads via rpms. (Mahadev via Vikram)
+
   AMBARI-511. Support rpms for mysql connector and other tars. (Jitendra via Vikram)
 
   AMBARI-510. Modify the router to force redirection to "Add Nodes Progress" popup (Yusaku via Vikram)

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-hive/manifests/mysql-connector.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-hive/manifests/mysql-connector.pp?rev=1347360&r1=1347359&r2=1347360&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-hive/manifests/mysql-connector.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-hive/manifests/mysql-connector.pp Thu Jun  7 03:35:52 2012
@@ -15,11 +15,11 @@ class hdp-hive::mysql-connector()
        command => "mkdir -p ${artifact_dir} ;  cp /usr/share/java/mysql-connector-java.jar  ${target}",
        unless  => "test -f ${target}",
        creates => $target,
-       path    => ["/bin","/usr/bin/"]
+       path    => ["/bin","/usr/bin/"],
        require => Hdp::Package['mysql-connector-java-5.0.8-4.jpp5'],
        notify  =>  Anchor['hdp-hive::mysql-connector::end'],
    }
 
-   anchor { hdp-hive::mysql-connector::end':}
+   anchor { 'hdp-hive::mysql-connector::end':}
 
 }

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-oozie/manifests/download-ext-zip.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-oozie/manifests/download-ext-zip.pp?rev=1347360&r1=1347359&r2=1347360&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-oozie/manifests/download-ext-zip.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-oozie/manifests/download-ext-zip.pp Thu Jun  7 03:35:52 2012
@@ -15,7 +15,7 @@ class hdp-oozie::download-ext-zip()
        command => "mkdir -p ${artifact_dir} ;  cp /tmp/HDP-oozie/${zip_name} ${target}",
        unless  => "test -f ${target}",
        creates => $target,
-       path    => ["/bin","/usr/bin/"]
+       path    => ["/bin","/usr/bin/"],
        require => Hdp::Package['extjs-2.2-1'],
        notify  =>  Anchor['hdp-oozie::download-ext-zip::end'],
    }

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp?rev=1347360&r1=1347359&r2=1347360&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp Thu Jun  7 03:35:52 2012
@@ -16,7 +16,7 @@ class hdp-templeton::download-hive-tar()
        command => "mkdir -p ${artifact_dir} ;  cp /tmp/HDP-templeton/${src_tar_name} ${target}",
        unless  => "test -f ${target}",
        creates => $target,
-       path    => ["/bin","/usr/bin/"]
+       path    => ["/bin","/usr/bin/"],
        require => Hdp::Package['templeton-tar-hive-0.0.1-1'],
        notify  =>  Anchor['hdp-templeton::download-hive-tar::end'],
    }

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp?rev=1347360&r1=1347359&r2=1347360&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp Thu Jun  7 03:35:52 2012
@@ -16,7 +16,7 @@ class hdp-templeton::download-pig-tar()
        command => "mkdir -p ${artifact_dir} ;  cp /tmp/HDP-templeton/${src_tar_name} ${target}",
        unless  => "test -f ${target}",
        creates => $target,
-       path    => ["/bin","/usr/bin/"]
+       path    => ["/bin","/usr/bin/"],
        require => Hdp::Package['templeton-tar-pig-0.0.1-1'],
        notify  =>  Anchor['hdp-templeton::download-pig-tar::end'],
    }