Defined Type: apache::namevirtualhost

Defined in:
manifests/namevirtualhost.pp

Overview



1
2
3
4
5
6
7
8
9
# File 'manifests/namevirtualhost.pp', line 1

define apache::namevirtualhost {
  $addr_port = $name

  # Template uses: $addr_port
  concat::fragment { "NameVirtualHost ${addr_port}":
    target  => $::apache::ports_file,
    content => template('apache/namevirtualhost.erb'),
  }
}