X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fconf.pp;h=03aab8e00270fb40ca699d1e4e286a8dd949bb71;hb=3684f88372959cb8dd6eb5bce99b6a07db43f058;hp=c1af710fd4b2a3b45f92f830a7eafeab27464935;hpb=4a788a60f913d5d7934aef9fa0eda68152a3e8b3;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/conf.pp b/manifests/conf.pp index c1af710..03aab8e 100644 --- a/manifests/conf.pp +++ b/manifests/conf.pp @@ -1,14 +1,15 @@ define apt::conf ( + $ensure = present, $priority = '50', $content - ) { +) { include apt::params $apt_conf_d = $apt::params::apt_conf_d file { "${apt_conf_d}/${priority}${name}": - ensure => file, + ensure => $ensure, content => $content, owner => root, group => root,