42c636341f
No substantive behavior changes - only spacing, line alignment, quotation, etc.
35 lines
676 B
Puppet
35 lines
676 B
Puppet
# Class: apache::ssl
|
|
#
|
|
# This class installs Apache SSL capabilities
|
|
#
|
|
# Parameters:
|
|
# - The $ssl_package name from the apache::params class
|
|
#
|
|
# Actions:
|
|
# - Install Apache SSL capabilities
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class apache::ssl {
|
|
|
|
include apache
|
|
|
|
case $::operatingsystem {
|
|
'centos', 'fedora', 'redhat', 'scientific': {
|
|
package { 'apache_ssl_package':
|
|
ensure => installed,
|
|
name => $apache::params::ssl_package,
|
|
require => Package['httpd'],
|
|
}
|
|
}
|
|
'ubuntu', 'debian': {
|
|
a2mod { 'ssl': ensure => present, }
|
|
}
|
|
default: {
|
|
fail( "${::operatingsystem} not defined in apache::ssl.")
|
|
}
|
|
}
|
|
}
|