03aab8e00270fb40ca699d1e4e286a8dd949bb71
[puppet-modules/puppetlabs-apt.git] / manifests / conf.pp
1 define apt::conf (
2   $ensure   = present,
3   $priority = '50',
4   $content
5 ) {
6
7   include apt::params
8
9   $apt_conf_d = $apt::params::apt_conf_d
10
11   file { "${apt_conf_d}/${priority}${name}":
12     ensure  => $ensure,
13     content => $content,
14     owner   => root,
15     group   => root,
16     mode    => '0644',
17   }
18 }