Commit 2c343dac authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

fix class name in some places

parent 21713795
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -58,14 +58,14 @@ class su_apache::debian (
  # Set the SSL/TLS protocols and ciphers.
  apache::conf { 'ssl-strength.conf':
    ensure  => present,
    content => template('apache/etc/apache2/conf.d/ssl-strength.erb'),
    content => template('su_apache/etc/apache2/conf.d/ssl-strength.erb'),
  }

  # Replace the default Apache security configuration file with one that
  # suppresses most information disclosure about the server.
  apache::conf { 'security.conf':
    ensure => present,
    source => 'puppet:///modules/apache/etc/apache2/conf.d/security',
    source => 'puppet:///modules/su_apache/etc/apache2/conf.d/security',
    require => Package['apache'],
    notify  => Service['apache'],
  }
@@ -76,7 +76,7 @@ class su_apache::debian (
    require => File['/etc/apache2/mods-available/status.conf'],
  }
  file { '/etc/apache2/mods-available/status.conf':
    source  => 'puppet:///modules/apache/etc/apache2/mods-available/status.conf',
    source  => 'puppet:///modules/su_apache/etc/apache2/mods-available/status.conf',
    require => Package['apache'],
    notify  => Service['apache'],
  }