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/02 02:41:30 UTC

svn commit: r1345409 - in /incubator/ambari/branches/ambari-186: CHANGES.txt hmc/puppet/modules/hdp-dashboard/manifests/init.pp hmc/puppet/modules/hdp-ganglia/manifests/init.pp hmc/puppet/modules/hdp-ganglia/manifests/server.pp

Author: vikram
Date: Sat Jun  2 00:41:30 2012
New Revision: 1345409

URL: http://svn.apache.org/viewvc?rev=1345409&view=rev
Log:
AMBARI-327. Fix syntax error in monitoring modules (Contributed by Ramya)

Modified:
    incubator/ambari/branches/ambari-186/CHANGES.txt
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-dashboard/manifests/init.pp
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/init.pp
    incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/server.pp

Modified: incubator/ambari/branches/ambari-186/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/CHANGES.txt?rev=1345409&r1=1345408&r2=1345409&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/CHANGES.txt (original)
+++ incubator/ambari/branches/ambari-186/CHANGES.txt Sat Jun  2 00:41:30 2012
@@ -6,6 +6,8 @@ characters wide.
 
 Release 0.1.x - unreleased
 
+  AMBARI-327. Fix syntax error in monitoring modules (Ramya via Vikram)
+
   AMBARI-326. Dependencies should be added only during install phase (Jitendra via Vikram)
 
   AMBARI-324. Welcome page missing. (Yusaku via Vikram)

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-dashboard/manifests/init.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-dashboard/manifests/init.pp?rev=1345409&r1=1345408&r2=1345409&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-dashboard/manifests/init.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-dashboard/manifests/init.pp Sat Jun  2 00:41:30 2012
@@ -7,7 +7,7 @@ class hdp-dashboard(
    } elsif ($service_state == 'uninstalled') {
     hdp::package { 'dashboard' :
       ensure => 'uninstalled',
-      java_needed = 'false',
+      java_needed => 'false',
       size   => 64
     }
     hdp::directory_recursive_create { $conf_dir :
@@ -19,7 +19,7 @@ class hdp-dashboard(
 
    } elsif ($service_state in ['running','installed_and_configured','stopped']) {
       hdp::package { 'dashboard' :
-        java_needed = 'false',
+        java_needed => 'false',
         size => 64
        }
      $conf_dir =  $hdp-dashboard::params::conf_dir

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/init.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/init.pp?rev=1345409&r1=1345408&r2=1345409&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/init.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/init.pp Sat Jun  2 00:41:30 2012
@@ -14,12 +14,12 @@ class hdp-ganglia(
   if ($service_state == 'no_op') {
    } elsif ($service_state == 'uninstalled') {
     hdp::package { 'ganglia-monitor' :
-      java_needed = 'false',
+      java_needed => 'false',
       ensure => 'uninstalled'
     }
    } elsif ($service_state in ['running','installed_and_configured','stopped']) {
       hdp::package { 'ganglia-monitor':
-        java_needed = 'false'
+        java_needed => 'false'
       }
 
   } 

Modified: incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/server.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/server.pp?rev=1345409&r1=1345408&r2=1345409&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/server.pp (original)
+++ incubator/ambari/branches/ambari-186/hmc/puppet/modules/hdp-ganglia/manifests/server.pp Sat Jun  2 00:41:30 2012
@@ -92,7 +92,7 @@ class hdp-ganglia::server::packages(
 )
 {
   hdp::package { ['ganglia-server','ganglia-gweb','ganglia-hdp-gweb-addons']:
-    java_needed = 'false',
+    java_needed => 'false',
     ensure => $ensure
  } 
 }