From 7d232b51cc6827518b8397070224fc938c822eb3 Mon Sep 17 00:00:00 2001
From: Spencer Krum <nibz@spencerkrum.com>
Date: Mon, 1 Jun 2015 11:28:17 -0700
Subject: [PATCH] Use puppet true, which is lowercase

https://docs.puppetlabs.com/puppet/4.1/reference/lang_data_boolean.html
Also fixup some whitespace.

Change-Id: I284f213b6df3c3a57f54bb9b29e31103642b5641
---
 manifests/tunnel.pp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/manifests/tunnel.pp b/manifests/tunnel.pp
index 2a9425a..265f551 100644
--- a/manifests/tunnel.pp
+++ b/manifests/tunnel.pp
@@ -21,10 +21,10 @@ define autossh::tunnel (
   $ssh_user,
   $ssh_key,
   $ssh_args,
-  $ensure              = running,
-  $ssh_port            = '22',
-  $monitoring_port     = 0,
-  $run_in_background   = True,
+  $ensure            = running,
+  $ssh_port          = '22',
+  $monitoring_port   = 0,
+  $run_in_background = true,
 ) {
     service { '/usr/lib/autossh':
       ensure   => $ensure,