I am trying to install a puppet module on https://github.com/dwerder/puppet-mongodb
One of the requirements for its work is to install the mongodb repository. Since I'm trying to deploy it to Debian, I tried using the following class to add the source:
class mongodb::apt::repo { include apt apt::source { '10gen': location => 'http://downloads-distro.mongodb.org/repo/debian-sysvinit', release => 'dist', repos => '10gen', key => '7F0CEB10', key_server => 'keyserver.ubuntu.com', include_src => false } }
However, when I try to install the module (in the node test), I get the following output:
root@debian :/etc/puppet/modules
: Completed directory in 0.06 seconds
The class is included in the module installation class at https://github.com/dwerder/puppet-mongodb/blob/master/manifests/install.pp
I'm not quite sure why this addiction cycle, any ideas?
source share