Skip to content

Commit

Permalink
Convert bools from tring to true bools
Browse files Browse the repository at this point in the history
  • Loading branch information
russwhelan committed Aug 11, 2017
1 parent d93f2fd commit 7efdd7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
$newrelic_php_package = 'newrelic-php5'
$newrelic_php_service = 'newrelic-daemon'
$newrelic_php_conf_dir = ['/etc/php.d']
$newrelic_enable_repo = 'true'
$newrelic_enable_repo = true
if $newrelic_enable_repo {
package { 'newrelic-repo-5-3.noarch':
ensure => present,
Expand All @@ -33,7 +33,7 @@
$newrelic_service_name = 'newrelic-sysmond'
$newrelic_php_package = 'newrelic-php5'
$newrelic_php_service = 'newrelic-daemon'
$newrelic_enable_repo = 'true'
$newrelic_enable_repo = true
if $newrelic_enable_repo {
apt::source { 'newrelic':
location => 'http://apt.newrelic.com/debian/',
Expand Down

0 comments on commit 7efdd7f

Please sign in to comment.