Skip to content

Commit

Permalink
Merge pull request #17 from Lavaburn/bugfix_open_source
Browse files Browse the repository at this point in the history
Bugfix: $is_pe fact can be a string.
  • Loading branch information
jlambert121 committed Jul 15, 2015
2 parents 654a35a + e87856f commit a8d7e18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .fixtures.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
fixtures:
forge_modules:
stdlib:
repo: "puppetlabs/stdlib"
ref: "4.1.0"
symlinks:
graphite_reporter: "#{source_dir}"

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Requirements

* `Puppet`
* A [Graphite](http://graphite.wikidot.com/) server
* puppetlabs/stdlib (>= 4.0.0) module

Installation & Usage
--------------------
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$graphite_suffix = 'puppet'
$graphite_reverse_hostname = true

if $::is_pe {
if str2bool($::is_pe) {
$config_file = '/etc/puppetlabs/puppet/graphite.yaml'
$config_owner = 'pe_puppet'
$config_group = 'pe_puppet'
Expand Down

0 comments on commit a8d7e18

Please sign in to comment.