summaryrefslogtreecommitdiffstats
path: root/lib/puppet/indirector/envelope.rb
blob: 73c33e9d45d2bec249381f84ecf6e67cdf2769ab (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'puppet/indirector'

# Provide any attributes or functionality needed for indirected
# instances.
module Puppet::Indirector::Envelope
  attr_accessor :expiration

  def expired?
    expiration and expiration < Time.now
  end
end