https://github.com/dwerder/puppet-mongodbに puppet モジュールをインストールしようとしています
それが機能するための要件の 1 つは、mongodb リポジトリをセットアップすることです。Debian にデプロイしようとしているので、次のクラスを使用してソースを追加してみました。
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
}
}
ただし、モジュールを (テスト ノードに) インストールしようとすると、次の出力が得られます。
root@debian:/etc/puppet/modules# puppet agent --test
info: Caching catalog for debian.lan
info: Applying configuration version '1353946258'
err: Could not apply complete catalog: Found 1 dependency cycle:
(Exec[apt_update] => Class[Apt::Update] => Anchor[apt::source::10gen] => Anchor[apt::source::10gen] => Apt::Source[10gen] => Class[Mongodb::Apt::Repo] => Package[mongodb-10gen] => Anchor[mongodb::install::end] => Anchor[mongodb::install::end] => File[10gen.list] => Apt::Source[10gen])
Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz
注意: 0.06 秒でカタログの実行が終了しました
このクラスは、 https://github.com/dwerder/puppet-mongodb/blob/master/manifests/install.ppのモジュールのインストール クラスに含まれています。
なぜこの依存関係のサイクルが発生するのかよくわかりませんが、アイデアはありますか?