diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 19:17:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 19:17:15 -0300 |
commit | 4885b84a5596589459b3d4be65da9f2cec681c61 (patch) | |
tree | da5c2218eb7b0016f450915e8b914602218fa6ac | |
parent | d5c7bb1ed0eb5c59571a702dc3a43056d09ccc60 (diff) | |
download | puppet-backup-4885b84a5596589459b3d4be65da9f2cec681c61.tar.gz puppet-backup-4885b84a5596589459b3d4be65da9f2cec681c61.tar.bz2 |
Switch from True to true at hiera
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index eea4cd2..bef8c58 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -22,8 +22,8 @@ class backup( $when = hiera('backup::when', 'everyday at 01:00'), - $audit_rsync = hiera('backup::audit_rsync', True), - $reportwarning = hiera('backup::reportwarning', True), + $audit_rsync = hiera('backup::audit_rsync', true), + $reportwarning = hiera('backup::reportwarning', true), $hwinfo = hiera('backup::hwinfo', 'installed') ) { |