So in the icinga-core source, I noticed that the handling of populating hostgroups is a bit different from 1.8.4 to 1.11, eg. the 'result != ok' that short-circuits the allow_empty_hostgroup_assignment option? I'm sure there's a good reason for this, but any insight as to why? Anything we can do on our side?
In xodtemplate.c in 1.8.4: /* add all members to the host group */ if (temp_memberlist == NULL && allow_empty_hostgroup_assignment == 0) { logit(NSLOG_CONFIG_ERROR, TRUE, "Error: Could not expand members specified in hostgroup (config file '%s', starting on line %d)\n", xodtemplate_config_file_name(temp_hostgroup->_config_file), temp_hostgroup->_start_line); return ERROR; } In 1.11: /* add all members to the host group */ if (result != OK || (temp_memberlist == NULL && allow_empty_hostgroup_assignment == 0)) { logit(NSLOG_CONFIG_ERROR, TRUE, "Error: Could not expand members specified in hostgroup (config file '%s', starting on line %d)\n", xodtemplate_config_file_name(temp_hostgroup->_config_file), temp_hostgroup->_start_line); return ERROR; } On Fri, Apr 4, 2014 at 8:42 PM, Jason Erdmann < jason.erdm...@tradingtechnologies.com> wrote: > Hi there, we just upgraded a few of our Icinga boxes from 1.8.4 to 1.11 > and noticed that Icinga fails the config check on startup due to a couple > of empty hostgroups. We have a handful of hostgroups that look like the > one below: > > define hostgroup{ > hostgroup_name some-group > alias Some Group > members some-.* > } > > We push all groups to all nodes using rsync to simplify our config > management, even though a given node may not have any hosts that match some > groups. Icinga 1.8.4 let us do this but apparently 1.11 doesn't? > > We already have allow_empty_hostgroup_assignment=1 set as we did > pre-upgrade. Any input? Thanks for the help! > > -- > Jason Erdmann | TTNET Monitoring Systems Engineer | (312)268-1623 > > -- Jason Erdmann | TTNET Monitoring Systems Engineer | (312)268-1623
_______________________________________________ icinga-users mailing list icinga-users@lists.icinga.org https://lists.icinga.org/mailman/listinfo/icinga-users