16 lines
539 B
Plaintext
16 lines
539 B
Plaintext
# Crontab for <%= @node.name %> managed by Chef. Changes will be overwritten.
|
|
default-lease-time 600;
|
|
max-lease-time 7200;
|
|
# option definitions common to all supported networks...
|
|
option domain-name <%= @node.dhcp.domain.name %>;
|
|
option domain-name-servers <%= @node.dhcp.domain.server %>;
|
|
|
|
<% @node.dhcp.hosts.each do |host| -%>
|
|
host <%= host.name %> {
|
|
hardware ethernet <%= host.mac %>;
|
|
fixed-address <%= "#{host.name}.#{@node.dhcp.domain.name}" %>;
|
|
use-host-decl-names true;
|
|
next-server <%= host.ip %>;
|
|
}
|
|
<% end -%>
|