Forum: Cfengine Help
Subject: Re: Concatenating "inputs" from slists seems broken for cf-serverd
Author: Seva Gluschenko
Link to topic: https://cfengine.com/forum/read.php?3,22004,22009#msg-22009

This behaviour is described in Cfengine Reference Manual. The only way to 
expand inputs this way is to declare common part inside the outer bundle:

bundle common g
{
  vars:
      "inputs" slist => { "foo.cf", "bar.cf" };
}

body common control
{
 linux::
    inputs => { @(g.inputs), "linux.cf" };
 solaris::
    inputs => { @(g.inputs), "solaris.cf" };
}


_______________________________________________
Help-cfengine mailing list
Help-cfengine@cfengine.org
https://cfengine.org/mailman/listinfo/help-cfengine

Reply via email to