Defined Type: pulp::apache::fragment

Defined in:
manifests/apache/fragment.pp

Overview

Provides the ability to specify fragments for the ssl virtual host defined for a Pulp server

Parameters:

  • ssl_content (String)

    Content of the ssl virtual host fragment

  • order (Integer) (defaults to: 15)

    The order in which to load the concat fragments



10
11
12
13
14
15
16
17
18
19
# File 'manifests/apache/fragment.pp', line 10

define pulp::apache::fragment(
  String $ssl_content,
  Integer $order = 15,
) {
  concat::fragment { $name:
    target  => '05-pulp-https.conf',
    content => $ssl_content,
    order   => $order,
  }
}