Hi all, looking for how to deploy Zabbix Agent 2 on linux machines I have thought about doing it through Puppet.
However I can't find any official module and when I try to install this https://forge.puppet.com/modules/gjerjens/zabbix_agent2 I get the dependencies error.
If I ignore them, it installs but it gives me this error
I solved the error of dependency executing
But I prefer use an official Puppet Module for Zabbix Agent 2
However I can't find any official module and when I try to install this https://forge.puppet.com/modules/gjerjens/zabbix_agent2 I get the dependencies error.
If I ignore them, it installs but it gives me this error
Code:
Warning: Module 'puppetlabs-stdlib' (v8.5.0) fails to meet some dependencies: 'gjerjens-zabbix_agent2' (v0.1.1) requires 'puppetlabs-stdlib' (>= 4.13.1 < 7.0.0) /etc/puppetlabs/code/environments/production/modules ├── gjerjens-zabbix_agent2 (v0.1.1) ├── puppet-firewalld (v4.5.1) ├── puppetlabs-apache (v8.3.0) ├── puppetlabs-apt (v9.0.0) ├── puppetlabs-concat (v7.3.0) ├── puppetlabs-ntp (v9.2.0) └── puppetlabs-stdlib (v8.5.0) invalid
Code:
puppet module install puppetlabs-stdlib --version 6.6.0 --force
Comment