From 086e580fed2f32d5a63adcc70763ca4c189499b6 Mon Sep 17 00:00:00 2001 From: Cédric Jeanneret Date: Fri, 5 Nov 2010 08:35:57 +0100 Subject: (dhcp::params) - class can be used for client and server --- manifests/definitions/dhcp-host.pp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'manifests') diff --git a/manifests/definitions/dhcp-host.pp b/manifests/definitions/dhcp-host.pp index 747fa7c..1d7fbbe 100644 --- a/manifests/definitions/dhcp-host.pp +++ b/manifests/definitions/dhcp-host.pp @@ -1,9 +1,20 @@ +/* + += Definition: dhcp::host +Create dhcp configuration for a host + +Arguments: + *$mac*: host MAC address (mandatory) + *$subnet*: subnet in which we want to add this host + *$fixed_address*: host fixed address (if not set, takes $name) + +*/ define dhcp::host($ensure=present,$mac,$subnet,$fixed_address=false) { - include dhcp::variables - common::concatfilepart {$name: + include dhcp::params + common::concatfilepart {"dhcp.host.$name": ensure => $ensure, notify => Service["dhcpd"], - file => "${dhcp::variables::config_dir}/hosts.d/${subnet}.conf", + file => "${dhcp::params::config_dir}/hosts.d/${subnet}.conf", require => Dhcp::Subnet[$subnet], content => template("dhcp/host.conf.erb"), } -- cgit v1.2.3