diff options
author | Raphaël Pinson <raphael.pinson@camptocamp.com> | 2013-04-12 10:50:24 +0200 |
---|---|---|
committer | Raphaël Pinson <raphael.pinson@camptocamp.com> | 2013-04-12 10:50:24 +0200 |
commit | f7025518512c0bf8d63f413f7be78347fedee9f4 (patch) | |
tree | 309a353b9b9e30023d505b1985627bfbeb249749 /manifests | |
parent | 53346e4314aed349290661cbe70c97ab573ea9bc (diff) | |
download | puppet-dhcp-f7025518512c0bf8d63f413f7be78347fedee9f4.tar.gz puppet-dhcp-f7025518512c0bf8d63f413f7be78347fedee9f4.tar.bz2 |
Test target for concat::fragment in dhcp::hosts
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/hosts.pp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/manifests/hosts.pp b/manifests/hosts.pp index f8e5faf..676d507 100644 --- a/manifests/hosts.pp +++ b/manifests/hosts.pp @@ -4,15 +4,14 @@ # # Arguments # $template: dhcp host template - default: 'dhcp/host.conf.erb' -# $global_options: global options for the whole bunch of hosts. +# $global_options: an array of global options for the whole bunch of hosts. # you may override it per host, setting the host "options" # directly in the hash. # $subnet: targeted subnet # $hash_data: hash containing data - default form: # { # <host1> => { -# options => false, -# fixed_address => false, +# options => ['opt1', 'opt2'], # interfaces => { # eth0 => 'mac-address', # eth1 => 'mac-address', @@ -22,8 +21,7 @@ # } # }, # <host2> => { -# options => false, -# fixed_address => false, +# fixed_address => 'foo.example.com', # interfaces => { # eth0 => 'mac-address', # eth1 => 'mac-address', |