diff options
Diffstat (limited to 'manifests/shared-network.pp')
-rw-r--r-- | manifests/shared-network.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/shared-network.pp b/manifests/shared-network.pp index 9e1e779..2154d37 100644 --- a/manifests/shared-network.pp +++ b/manifests/shared-network.pp @@ -13,9 +13,9 @@ Warnings: */ define dhcp::shared-network($ensure=present, $subnets=[]) { include dhcp::params - common::concatfilepart {"shared-${name}": + concat::fragment {"shared-${name}": ensure => $ensure, - file => "${dhcp::params::config_dir}/dhcpd.conf", + target => "${dhcp::params::config_dir}/dhcpd.conf", content => template("dhcp/shared-network.erb"), require => Dhcp::Subnet[$subnets], } |