apache, yum: Remove unused mod_spdy support

This commit is contained in:
Ossi Salmi 2015-06-23 16:16:33 +03:00
parent 0d1594a436
commit 6f8bf0c590
2 changed files with 0 additions and 57 deletions

View file

@ -1026,42 +1026,6 @@ class apache::mod::wsgi($http=true, $https=true, $embedded=true) {
}
# Install Google's mod_spdy
#
class apache::mod::spdy {
case $::operatingsystem {
"centos","redhat","fedora": { }
default: {
fail("Apache module not supported in ${::operatingsystem}.")
}
}
$spdy_package = "mod-spdy-beta"
require yum::repo::mod_spdy
package { $spdy_package:
ensure => installed,
}
apache::configfile { "spdy.conf":
http => false,
https => true,
require => Package[$spdy_package],
notify => Service["httpsd"],
}
apache::configfile { "load_ssl_with_npn.conf":
http => false,
https => true,
require => Package[$spdy_package],
notify => Service["httpsd"],
}
}
# Install and configure webalizer.
#
class apache::webalizer {