# File lib/puppet/agent.rb, line 63
63:   def splay
64:     return unless Puppet[:splay]
65:     return if splayed?
66: 
67:     time = rand(Integer(Puppet[:splaylimit]) + 1)
68:     Puppet.info "Sleeping for #{time} seconds (splay is enabled)"
69:     sleep(time)
70:     @splayed = true
71:   end