Puppet aptモジュールの使用

Puppet aptモジュールの使用

私は Puppet の初心者ですが、apt モジュール経由でパッケージをインストールしようとすると問題が発生します。

class newrelic {
        apt::source {
                'newrelic':location => 'http://apt.newrelic.com/debian/',
                repos => 'non-free',
                key => '548C16BF',
                key_source => 'https://download.newrelic.com/548C16BF.gpg',
                include_src => false,
                release => 'newrelic',
        }
        package {
                'newrelic-sysmond':ensure => 'present',
                notify => Service['newrelic-sysmond'],
                require => Class['apt::source'],
        }
        service {
                'newrelic-sysmond':ensure => 'running',
                enable => true,
                hasrestart => true,
                hasstatus => true,
                require => Exec['newrelic_config'],
        }
        exec {
                'newrelic_config':path => '/bin:/usr/bin',
                command => "/usr/sbin/nrsysmond-config --set license_key=xxxxxxx",
                user => 'root',
                group => 'root',
                require => Package['newrelic-sysmond'],
                notify => Service['newrelic-sysmond'],
        }
}

受け取ったエラーは次のとおりです:

Warning: Scope(Class[Apt::Update]): Could not look up qualified variable '::apt::always_apt_update'; class ::apt has not been evaluated
Warning: Scope(Class[Apt::Update]): Could not look up qualified variable 'apt::update_timeout'; class apt has not been evaluated
Warning: Scope(Class[Apt::Update]): Could not look up qualified variable 'apt::update_tries'; class apt has not been evaluated
Notice: Compiled catalog for host.domain.local in environment production in 0.33 seconds
Error: Could not find dependency Class[Apt::Source] for Package[newrelic-sysmond] at /home/jeroen/puppet/modules/newrelic/manifests/init.pp:16

私のモジュールで何が間違っているのか分かりますか?

答え1

include apt宣言の前に、クラスの先頭に追加する必要があります。エラーは、上位のスコープがわからないため、apt::source見つけられないことを示しています。apt::thingsapt

include aptさまざまなデフォルトを使用しますが、それらを変更する場合は、代わりに次のような宣言を使用する必要があります。

class { 'apt':
    always_apt_update => true,
}

...例えば、偽造ページ

また、 require が間違っています。名前も指定する必要があるので、Apt::Source['newrelic']ではなく であるべきだと思いますClass['apt::source']

関連情報