-1

这是 node.yaml 文件,我应该在其中声明我想使用 Icinga2 存储库。我在匹配密钥时遇到问题,我无法通过,因为我不知道如何获得正确的密钥 ID。这就是为什么我也不确定位置的原因,但它应该很好。我正在使用 puppet 和 hiera,所以只能通过这个 yaml 文件来完成。

icinga2:
   location: 'http://packages.icinga.com/ubuntu/'
   repos: 'main'
     key:
      id: '*****'
      server: 'agent.puppetzone.com'
      source: 'http://packages.icinga.com/icinga.key'
4

1 回答 1

0

我正在使用 puppet-icinga2 模块。

就是这样,(node.yaml 文件)我使用了错误的存储库和错误的密钥 ID:

apt::sources:
  icinga2:
    location: 'http://ppa.launchpad.net/formorer/icinga/ubuntu'
    repos: 'main'
      key:
         id: '4A132479423673E80ACCA85420EEDAFD36862847'
         server: 'keyserver.ubuntu.com'
于 2017-03-13T18:52:15.357 回答