Issue #7632 has been updated by Matthaus Litteken. Target version changed from 2.7.x to 2.7.0
---------------------------------------- Bug #7632: Secret_agent application lags behind the underlying face. https://projects.puppetlabs.com/issues/7632 Author: Nick Fagerlund Status: Closed Priority: Normal Assignee: Category: Target version: 2.7.0 Affected Puppet version: Keywords: Branch: https://github.com/nfagerlund/puppet/tree/ticket/2.7.x/7632-secret_agent_application >From `lib/puppet/application/secret_agent.rb`: def run_command report = Puppet::Face[:secret_agent, '0.0.1'].synchronize(Puppet[:certname]) Puppet::Face[:report, '0.0.1'].submit(report) end The `secret_agent` synchronize action no longer takes an argument, so it blows up. (The support actions read the local certname directly; see issue #7277.) Also, it submits the report all on its own, so we don't need to submit it a second time here. Near as I can tell, the block should actually be: def run_command report = Puppet::Face[:secret_agent, '0.0.1'].synchronize end -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
