Ich bin ein absoluter Puppet-Anfänger und habe ein Problem, wenn ich versuche, ein Paket über das Apt-Modul zu installieren.
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'],
}
}
Dies ist die Fehlermeldung, die ich erhalte:
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
Irgendeine Idee, was ich in meinem Modul falsch mache?
Antwort1
include apt
Sie müssen oben in Ihrer Klasse vor der Deklaration Folgendes hinzufügen apt::source
: Der Fehler besagt, dass es nicht gefunden werden kann apt::things
, weil der höhere Bereich nicht bekannt apt
ist.
Es include apt
werden verschiedene Standardwerte verwendet. Wenn Sie diese ändern möchten, müssen Sie stattdessen eine Deklaration wie die folgende verwenden:
class { 'apt':
always_apt_update => true,
}
...zum Beispiel. Mehr Infos auf derForge-Seite.
Außerdem ist Ihre Anforderung falsch: Sie müssen auch den Namen angeben, daher denke ich, dass es Apt::Source['newrelic']
anstelle von lauten sollte Class['apt::source']
.