Commit c8650504 authored by Scotty Logan's avatar Scotty Logan
Browse files

fixed requires instead of require typo

parent bc2a6493
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ class webproxy {

  exec { 'enable shib2':
    command => '/usr/sbin/a2enmod shib2',
    requires => Package['libapache2-mod-shib2'],
    require => Package['libapache2-mod-shib2'],
  }

  file { '/etc/apache2/conf-available/webauthldap.conf':
@@ -44,17 +44,17 @@ class webproxy {
    group   => 'root',
    mode    => '0644',
    source  => "puppet:///modules/${module_name}/webauthldap.conf",
    requires => Package['libapache2-mod-webauthldap'],
    require => Package['libapache2-mod-webauthldap'],
  }

  exec { 'enable webauthldap':
    command => '/usr/sbin/a2enmod webauthldap',
    requires => Package['libapache2-mod-webauthldap'],
    require => Package['libapache2-mod-webauthldap'],
  }

  exec { 'enable webauthldap conf':
    command => '/usr/sbin/a2enconf webauthldap',
    requires => [
    require => [
      Package['libapache2-mod-webauthldap'],
      File['/etc/apache2/conf-available/webauthldap.conf']
    ],