Re: [Nagios-devel] [PATCH] Fix default value for

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
Guest

Re: [Nagios-devel] [PATCH] Fix default value for

Post by Guest »

Hi Andreas,

On 14 Jan 2013, at 10:08, Andreas Ericsson wrote:

> On 01/14/2013 10:30 AM, Ton Voon wrote:
>> What I can't work out is how to set the env property in "define =
command". Can you provide some pointers and assistance?
>>=20
> Using a secondary list of key/value vectors. Since commands are =
usually
> fewer than 500 and remain pretty static, I'd just use a command->id
> indexed pointer-to-pointer list of key value vectors.

I couldn't work out how to create this array. I modelled it on =
command_ary, but it kept segfaulting when setting this first array =
element. I'm sure there's a malloc required somewhere, but I couldn't =
see how command_ary was being initialised. In the end, I've extended the =
command object to include an env attribute.

The next problem is that with an arbitrary list of environment =
variables, I need to pass this to the worker job creator. I can't see =
how to extend the wproc_* jobs, but it looks like the nagios_macros are =
not used. So I propose that we change:

static int wproc_run_job(worker_job *job, nagios_macros *mac)

to

static int wproc_run_job(worker_job *job, char **env)

Is this acceptable?

Ton






This post was automatically imported from historical nagios-devel mailing list archives
Original poster: tonvoon@gmail.com
Locked