search for: all_config

Displaying 1 result from an estimated 1 matches for "all_config".

Did you mean: full_config
2013 Feb 03
3
Another "function does not return a value" problem
Here''s the function: module Puppet::Parser::Functions newfunction(:fact_to_array, :type => :rvalue) do |args| args[0].split('','') end end Here''s the class I''m trying to use it in: class oms::all_config { file { ''/var/lib/oms/config'': source => ''puppet:///deployment/deployment'', recurse => true, purge => true, force => true, ignore => fact_to_array(''DIR_1,DIR_2,DIR_3''), require => Class[''oms:...