1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 04:30:36 +00:00
puppet-fluentd/manifests/repo/apt.pp
2016-01-15 17:35:19 -03:00

20 lines
495 B
Puppet

# Configure apt::source
#
class fluentd::repo::apt inherits fluentd {
apt::source { $fluentd::repo_name:
location => $fluentd::repo_url,
comment => $fluentd::repo_desc,
repos => 'contrib',
architecture => 'amd64',
release => $fluentd::distro_codename,
key => {
id => $fluentd::repo_gpgkeyid,
source => $fluentd::repo_gpgkey,
},
include => {
'src' => false,
'deb' => true,
},
}
}