Skip to content
Snippets Groups Projects
Commit 181c1073 authored by rswindell's avatar rswindell
Browse files

Added support for a services.ini NotHost key, to run for all hosts but one.

parent c8a4646f
No related branches found
No related tags found
No related merge requests found
......@@ -1510,6 +1510,11 @@ static service_t* read_services_ini(service_t* service, char* services_ini, DWOR
lprintf("Ignoring service (%s) for host: %s", sec_list[i], host);
continue;
}
if(stricmp(iniGetString(fp,sec_list[i],"NotHost",startup->host_name,host), startup->host_name)==0) {
lprintf("Ignoring service (%s) for host: %s", sec_list[i], host);
continue;
}
if((np=(service_t*)realloc(service,sizeof(service_t)*((*services)+1)))==NULL) {
fclose(fp);
lprintf("!MALLOC FAILURE");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment