dev/provisioning/modules/apache/manifests/ssl.pp
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     1 # Class: apache::ssl
       
     2 #
       
     3 # This class installs Apache SSL capabilities
       
     4 #
       
     5 # Parameters:
       
     6 # - The $ssl_package name from the apache::params class
       
     7 #
       
     8 # Actions:
       
     9 #   - Install Apache SSL capabilities
       
    10 #
       
    11 # Requires:
       
    12 #
       
    13 # Sample Usage:
       
    14 #
       
    15 class apache::ssl {
       
    16   warning('apache::ssl is deprecated; please use apache::mod::ssl')
       
    17   include ::apache::mod::ssl
       
    18 }