Icinga / puppet-icinga2-legacy

(legacy) Puppet module for Icinga 2 (EOL)
GNU General Public License v2.0
55 stars 93 forks source link

Fix the checkcommand template vars attribute handling #201

Closed n00by closed 8 years ago

n00by commented 8 years ago

so the vars are written correctly into the CheckCommand object configuration. Before the fix the template produced the following CheckCommand object configruation for the vars attribute:

vars += { vars.http_address = "$address$", vars.http_ssl = false, vars.http_sni = false }

instead of the desired

vars.http_address = "$address$", vars.http_ssl = false, vars.http_sni = false

arioch commented 8 years ago

Excellent! Merged upstream.