forked from jhoblitt/puppet-ganglia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change gmetad/gmond/web package installation to ensure => present ins…
…tead of latest
- Loading branch information
Joshua Hoblitt
committed
Nov 16, 2012
1 parent
69cd720
commit 179bccb
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class ganglia::gmetad::install inherits ganglia::gmetad { | ||
|
||
package { $gmetad_package_name: | ||
ensure => latest, | ||
ensure => present, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class ganglia::gmond::install { | ||
|
||
package { $gmond_package_name: | ||
ensure => latest, | ||
ensure => present, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class ganglia::web::install inherits ganglia::web { | ||
|
||
package { $web_package_name: | ||
ensure => latest, | ||
ensure => present, | ||
} | ||
} |