aboutsummaryrefslogtreecommitdiff
path: root/manifests/definitions/dhcp-subnet.pp
blob: 066f53893755cc0d7265661f44e85e299f107802 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*

= Definition: dhcp::subnet
Creates a subnet

Arguments:
 *$broadcast*   : subnet broadcast (mandatory)
 *$netmask*     : subnet netmask (if not set, takes eth0 netmask)
 *$routers*     : subnet routers (array)  (if not set, takes eth0 IP)
 *$subnet_mask* : netmask sent to dhcp guests (if not set, takes $netmask, or netmask_eth0)
 *$domain_name* : subnet domain name (if not set, takes server domain)
 *$other_opts*  : any other DHCPD option, as an array

Example:

node "dhcp.domain.ltd" {
  $dhcpd_domain_name = 'domain.ltd'
  $dhcpd_dns_servers = '10.27.21.1, 10.26.21.1'
  include dhcp

  dhcp::subnet {"10.27.20.0":
    ensure     => present,
    broadcast  => "10.27.20.255",
    other_opts => ['filename "pxelinux.0";', 'next-server 10.27.10.1;'],
  }
}
*/
define dhcp::subnet(
  $ensure=present,
  $broadcast,
  $netmask=false,
  $routers=false,
  $subnet_mask=false,
  $domain_name=false,
  $other_opts=false) {
  include dhcp::params

  $to_include = "${dhcp::params::config_dir}/hosts.d/${name}.conf"

  file {"${dhcp::params::config_dir}/subnets/${name}.conf":
    ensure => $ensure,
    owner  => root,
    group  => root,
    content => template("dhcp/subnet.conf.erb"),
    notify  => Service["dhcpd"],
  }
  
  common::concatfilepart {"dhcp.${name}":
    file => "${dhcp::params::config_dir}/dhcpd.conf",
    ensure => $ensure,
    content => "include \"${dhcp::params::config_dir}/subnets/${name}.conf\";\n",
  }

  common::concatfilepart {"00.dhcp.${name}.base":
    file   => $to_include,
    ensure => $ensure,
    content => "# File managed by puppet\n",
  }
}