Skip to content

Commit

Permalink
fix ganglia::gmetad::{install,config} ordering issue
Browse files Browse the repository at this point in the history
`ganglia::gmetad` would fail on el6.x when the /etc/ganglia dir wasn't present
as it was trying to create the configuration file before the RPM was installed
(which may create that dir).  This wasn't seen in my test env as ganglia::gmond
/ the gmond RPM were always creating that dir.  Turned up by the rspec-system
tests.
  • Loading branch information
Joshua Hoblitt committed Dec 14, 2013
1 parent 4380df1 commit be89a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/gmetad.pp
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
validate_string($gridname)

anchor{ 'ganglia::gmetad::begin': } ->
class{ 'ganglia::gmetad::config': } ->
class{ 'ganglia::gmetad::install': } ->
class{ 'ganglia::gmetad::config': } ->
class{ 'ganglia::gmetad::service': } ->
anchor{ 'ganglia::gmetad::end': }
}

0 comments on commit be89a48

Please sign in to comment.