Puppet Class: dhcp::config

Inherits:
dhcp
Defined in:
manifests/config.pp

Overview

Configuration class



2
3
4
5
6
7
8
9
10
11
# File 'manifests/config.pp', line 2

class dhcp::config inherits dhcp {
  file { $dhcp::dhcpd_conf:
    ensure  => file,
    owner   => 0,
    group   => 0,
    mode    => '0644',
    content => template('dhcp/dhcpd_conf.erb'),
    notify  => Service[$dhcp::service_name],
  }
}