aboutsummaryrefslogtreecommitdiff
path: root/manifests/shared_network.pp
blob: 766f432d3b435f52e97e60bef00788e8570f7616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Definition: dhcp::shared-network
#
# Creates a shared-network
#
# Parameters:
#   ['subnets'] - An array of subnets to be included in the shared-network.
#
# Sample usage:
#   ::dhcp::shared_network { 'office':
#     subnets => ['192.168.1.0', '192.168.2.0'],
#   }
#
# Requires:
#   - puppetlabs/stdlib
#   - ripienaar/concat
#
# Warnings:
#   - subnets must exists
#   - subnets must have $is_shared set to true (default is false)
#
define dhcp::shared_network(
  $ensure  = present,
  $subnets = [],
) {

  include ::dhcp::params

  validate_string($ensure)
  validate_re($ensure, ['present', 'absent'],
              "\$ensure must be either 'present' or 'absent', got '${ensure}'")
  validate_array($subnets)

  concat::fragment {"dhcp-shared-${name}":
    ensure  => $ensure,
    target  => "${dhcp::params::config_dir}/dhcpd.conf",
    content => template("${module_name}/shared-network.erb"),
    require => Dhcp::Subnet[$subnets],
  }

}