Я абсолютный новичок в Puppet, и у меня возникла проблема при попытке установить пакет через apt-module.
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::things
поскольку не знает, какова более высокая область действия apt
.
Будут include apt
использоваться различные значения по умолчанию. Если вы хотите изменить их, вам нужно будет использовать такое объявление:
class { 'apt':
always_apt_update => true,
}
...например. Подробнее оподделать страницу.
Кроме того, ваш require неверен: вам также нужно указать имя, поэтому я думаю, что Apt::Source['newrelic']
вместо Class['apt::source']
.