Skip to content
Snippets Groups Projects
Commit c8650504 authored by Scotty Logan's avatar Scotty Logan
Browse files

fixed requires instead of require typo

parent bc2a6493
No related branches found
No related tags found
No related merge requests found
......@@ -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']
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment