We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
::icinga2::object::host { 'host1.example.org': target => '/etc/icinga2/example.d/hosts.conf', import => [ 'generic-host' ], address => '127.0.0.1', vars => { os => 'Linux', http_vhosts => { httpd => {}, }, }, }
=>
object Host "host1.example.org" { import "generic-host"
address = "127.0.0.1" vars.os = "Linux" vars.http_vhostshttpd = {} }
The text was updated successfully, but these errors were encountered:
68bbd35
fix voxpupuli#247 hash key with empty hash as value is parsed wrong
c44f1c0
lbetz
No branches or pull requests
::icinga2::object::host { 'host1.example.org':
target => '/etc/icinga2/example.d/hosts.conf',
import => [ 'generic-host' ],
address => '127.0.0.1',
vars => {
os => 'Linux',
http_vhosts => {
httpd => {},
},
},
}
=>
This file is managed by Puppet. DO NOT EDIT.
object Host "host1.example.org" {
import "generic-host"
address = "127.0.0.1"
vars.os = "Linux"
vars.http_vhostshttpd = {}
}
The text was updated successfully, but these errors were encountered: