On 04/13/2012 01:01 PM, Nick Anderson wrote:
> params[apache_ssl_crt][1] string => "/path/to/SSLCertificateFile";
or rather
"params[apache_ssl_crt][1]" string => "/path/to/SSLCertificateFile";
--
Nick Anderson
___
Help-cfengine mailing list
Help-cf
On 04/13/2012 04:25 AM, Bas van der Vlies wrote:
>
> I see in the reference manual this:
> * SSLCertificateFile $(stage_file.params[apache_ssl_crt][1])
>
> Does this mead item 1 from list stage_file.params[apache_ssl_crt]?
I dont think so. I think its probably defined as
params[apache_ssl
I can insert a list in array with the aid of the '@' operator. This only works
for variable list but not for
an associative array variablelist, see below:
{{{
"local_list" slist => { "bas", "sil" };
"cfg[ldap_servers]" slist => { "cua.irc.sara.nl", "ldap.cua.sara.nl" },
policy => "overridable";
On 04/13/2012 10:16 AM, Bas van der Vlies wrote:
I am using the new template functionality in 3.3.0 and using a default set of
variables and can override them. But my set of
variables are list and strings. For strings it is easy but what about lists?
Here is an example of what i am trying to ac