blob: b33e19bb4ddb5cc138e2eb2d64a99b97e05e0bd7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require 'puppet/interface'
Puppet::Interface.define(:config, '0.0.1') do
action(:print) do
invoke do |*args|
Puppet.settings[:configprint] = args.join(",")
Puppet.settings.print_config_options
end
end
end
|