Author: swagle
Date: Fri Mar 15 22:30:49 2013
New Revision: 1457150
URL: http://svn.apache.org/r1457150
Log:
AMBARI-1439. rrd file location should be read from global config. (swagle)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-ganglia/manifests/server.pp
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1457150&r1=1457149&r2=1457150&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Mar 15 22:30:49 2013
@@ -493,6 +493,8 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-1439. rrd file location should be read from global config. (swagle)
+
AMBARI-1648. Hue configuration - DB properties cannot be empty. (swagle)
AMBARI-1641. Some map and reduce task metrics are missing for the
Modified:
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-ganglia/manifests/server.pp
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-ganglia/manifests/server.pp?rev=1457150&r1=1457149&r2=1457150&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-ganglia/manifests/server.pp
(original)
+++
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-ganglia/manifests/server.pp
Fri Mar 15 22:30:49 2013
@@ -126,8 +126,6 @@ class hdp-ganglia::server::files(
$ensure = present
)
{
-
-
$rrd_py_path = $hdp::params::rrd_py_path [$hdp::params::hdp_os_type]
hdp::directory_recursive_create{$rrd_py_path:
ensure => "directory",
@@ -142,6 +140,16 @@ class hdp-ganglia::server::files(
mode => '0755',
require => Hdp::Directory_recursive_create[$rrd_py_path]
}
+
+ $rrd_files_dir = $hdp-ganglia::params::rrdcached_base_dir
+ $rrd_file_owner = $hdp-ganglia::params::gmetad_user
+ hdp::directory_recursive_create{ $rrd_files_dir :
+ ensure => "directory",
+ owner => $rrd_file_owner,
+ group => $rrd_file_owner,
+ mode => 755
+ }
+
}