From c8650504649b89a359c1d679985ff3900f3fda2b Mon Sep 17 00:00:00 2001
From: Scotty Logan <swl@stanford.edu>
Date: Thu, 23 May 2019 12:51:51 -0700
Subject: [PATCH] fixed requires instead of require typo

---
 manifests/init.pp | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/manifests/init.pp b/manifests/init.pp
index e3efdf1..955ee23 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -34,27 +34,27 @@ class webproxy {
   }
 
   exec { 'enable shib2':
-    command  => '/usr/sbin/a2enmod shib2',
-    requires => Package['libapache2-mod-shib2'],
+    command => '/usr/sbin/a2enmod shib2',
+    require => Package['libapache2-mod-shib2'],
   }
 
   file { '/etc/apache2/conf-available/webauthldap.conf':
-    ensure   => present,
-    owner    => 'root',
-    group    => 'root',
-    mode     => '0644',
-    source   => "puppet:///modules/${module_name}/webauthldap.conf",
-    requires => Package['libapache2-mod-webauthldap'],
+    ensure  => present,
+    owner   => 'root',
+    group   => 'root',
+    mode    => '0644',
+    source  => "puppet:///modules/${module_name}/webauthldap.conf",
+    require => Package['libapache2-mod-webauthldap'],
   }
 
   exec { 'enable webauthldap':
-    command  => '/usr/sbin/a2enmod webauthldap',
-    requires => Package['libapache2-mod-webauthldap'],
+    command => '/usr/sbin/a2enmod webauthldap',
+    require => Package['libapache2-mod-webauthldap'],
   }
 
   exec { 'enable webauthldap conf':
-    command  => '/usr/sbin/a2enconf webauthldap',
-    requires => [
+    command => '/usr/sbin/a2enconf webauthldap',
+    require => [
       Package['libapache2-mod-webauthldap'],
       File['/etc/apache2/conf-available/webauthldap.conf']
     ],
-- 
GitLab