Forum: Cfengine Help Subject: Re: Concatenating "inputs" from slists seems broken for cf-serverd Author: schattenfell Link to topic: https://cfengine.com/forum/read.php?3,22004,22008#msg-22008
Hello, I can confirm this behaviour. By using the following code, "any.cf" will not be included. ######################################################### body common control { [...] inputs => { "update.cf", "cf-serverd.cf", "library.cf" }; [...] inputs => { @(inputs), "any.cf" }; [...] } ######################################################### The only way that works correct is: ######################################################### body common control { [...] inputs => { "update.cf", "cf-serverd.cf", "library.cf", "any.cf" }; [...] } ######################################################### I will do some bug reports soon, because I have found some more problems with 3.1.5. Best wishes Michael _______________________________________________ Help-cfengine mailing list Help-cfengine@cfengine.org https://cfengine.org/mailman/listinfo/help-cfengine