blob: 647bf505282b3527ca979b64d149bb9e1e3d6f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'puppet/faces'
Puppet::Faces.define(:config, '0.0.1') do
action(:print) do
when_invoked do |*args|
options = args.pop
Puppet.settings[:configprint] = args.join(",")
Puppet.settings.print_config_options
nil
end
end
end
|