Ver Fonte

AMBARI-514. Fix parsing error in puppet manifests. (Contributed by Mahadev)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/branches/ambari-186@1347364 13f79535-47bb-0310-9956-ffa450edef68
Vikram Dixit K há 13 anos atrás
pai
commit
6b96adcbd2

+ 2 - 0
CHANGES.txt

@@ -6,6 +6,8 @@ characters wide.
 
 Release 0.1.x - unreleased
 
+  AMBARI-514. Fix parsing error in puppet manifests. (Mahadev via Vikram)
+
   AMBARI-513. Download mysql rpm for sqoop (Ramya via Vikram)
 
   AMBARI-511. Fix for the previous 511 patch.

+ 1 - 1
hmc/puppet/modules/hdp-templeton/manifests/download-hive-tar.pp

@@ -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'],
    }

+ 1 - 1
hmc/puppet/modules/hdp-templeton/manifests/download-pig-tar.pp

@@ -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'],
    }