Defined Type: pulp::child::fragment

Defined in:
manifests/child/fragment.pp

Overview

provides the ability to specify fragments for the ssl virtual host defined for a pulp node

Parameters:

  • ssl_content (Any) (defaults to: undef)

    Content of the ssl virtual host fragment

  • order (Any) (defaults to: 15)

    The relative order compared to other fragments



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

define pulp::child::fragment(
  $ssl_content = undef,
  $order       = 15,
) {

  concat::fragment { $name:
    target  => '25-pulp-node-ssl.conf',
    content => $ssl_content,
    order   => $order,
  }

}