aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: e1e05b300844851a5e1bf773ba3071723a49939a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class dhcp (
  $server = true,
  $server_ddns_update = undef,
  $server_authoritative = undef,
  $server_opts = undef,
) {
  if $server {
    class { '::dhcp::server':
      ddns_update   => $server_ddns_update,
      authoritative => $server_authoritative,
      opts          => $server_opts,
    }
  }
}