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