Sha256: 20b0ee6a9acb53e5de202a4a5520826f566ab87327715ef7a379c19263b55d16

Contents?: true

Size: 1.72 KB

Versions: 124

Compression:

Stored size: 1.72 KB

Contents

require 'puppet/indirector/face'

Puppet::Indirector::Face.define(:report, '0.0.1') do
  copyright "Puppet Labs", 2011
  license   "Apache 2 license; see COPYING"

  summary "Create, display, and submit reports."

  save = get_action(:save)
  save.summary "API only: submit a report."
  save.arguments "<report>"
  save.returns "Nothing."
  save.examples <<-'EOT'
    From the implementation of `puppet report submit` (API example):

        begin
          Puppet::Transaction::Report.indirection.terminus_class = :rest
          Puppet::Face[:report, "0.0.1"].save(report)
          Puppet.notice "Uploaded report for #{report.name}"
        rescue => detail
          Puppet.log_exception(detail, "Could not send report: #{detail}")
        end
  EOT

  action(:submit) do
    summary "API only: submit a report with error handling."
    description <<-'EOT'
      API only: Submits a report to the puppet master. This action is
      essentially a shortcut and wrapper for the `save` action with the `rest`
      terminus, and provides additional details in the event of a failure.
    EOT
    arguments "<report>"
    examples <<-'EOT'
      API example:

          # ...
          report  = Puppet::Face[:catalog, '0.0.1'].apply
          Puppet::Face[:report, '0.0.1'].submit(report)
          return report
    EOT
    when_invoked do |report, options|
      begin
        Puppet::Transaction::Report.indirection.terminus_class = :rest
        Puppet::Face[:report, "0.0.1"].save(report)
        Puppet.notice "Uploaded report for #{report.name}"
      rescue => detail
        Puppet.log_exception(detail, "Could not send report: #{detail}")
      end
    end
  end
  deactivate_action(:find)
  deactivate_action(:search)
  deactivate_action(:destroy)
end

Version data entries

124 entries across 124 versions & 2 rubygems

Version Path
puppet-retrospec-1.5.0 vendor/gems/puppet-4.5.2/lib/puppet/face/report.rb
puppet-retrospec-1.4.1 vendor/gems/puppet-4.5.2/lib/puppet/face/report.rb
puppet-4.10.1 lib/puppet/face/report.rb
puppet-4.10.1-x86-mingw32 lib/puppet/face/report.rb
puppet-4.10.1-x64-mingw32 lib/puppet/face/report.rb
puppet-4.10.1-universal-darwin lib/puppet/face/report.rb
puppet-retrospec-1.4.0 vendor/gems/puppet-4.5.2/lib/puppet/face/report.rb
puppet-4.10.0 lib/puppet/face/report.rb
puppet-4.10.0-x86-mingw32 lib/puppet/face/report.rb
puppet-4.10.0-x64-mingw32 lib/puppet/face/report.rb
puppet-4.10.0-universal-darwin lib/puppet/face/report.rb
puppet-retrospec-1.3.2 vendor/gems/puppet-4.5.2/lib/puppet/face/report.rb
puppet-4.9.4 lib/puppet/face/report.rb
puppet-4.9.4-x86-mingw32 lib/puppet/face/report.rb
puppet-4.9.4-x64-mingw32 lib/puppet/face/report.rb
puppet-4.9.4-universal-darwin lib/puppet/face/report.rb
puppet-retrospec-1.3.1 vendor/gems/puppet-4.5.2/lib/puppet/face/report.rb
puppet-4.9.3 lib/puppet/face/report.rb
puppet-4.9.3-x86-mingw32 lib/puppet/face/report.rb
puppet-4.9.3-x64-mingw32 lib/puppet/face/report.rb