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

20 lines
495 B
ObjectPascal
Raw Normal View History

# 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,
},
}
}