summaryrefslogtreecommitdiffstats
path: root/lib/puppet/interface/config.rb
blob: 79d2ee7c1924478b2522e8b68b535f82ddfb05b2 (plain)
1
2
3
4
5
6
7
8
9
10
require 'puppet/interface'

Puppet::Interface.interface(:config) do
  action(:print) do
    invoke do |*args|
      Puppet.settings[:configprint] = args.join(",")
      Puppet.settings.print_config_options
    end
  end
end